kosak
02d6479259
This change adds an explicit invocation of std::move to workaround a problem
...
in VC++'s /analyze compiler that was causing build errors in Chrome:
https://code.google.com/p/googlemock/issues/detail?id=172
2015-02-14 02:22:21 +00:00
kosak
53d49dc43e
Make ReturnNull() support unique_ptr and shared_ptr.
2015-01-08 03:03:09 +00:00
kosak
6b81780310
Makes DoubleNear() print the diff between the actual and the expected value when the match fails.
...
Also fix bogus MSVC warning about "alignment of a member was sensitive to packing".
Also bring in gtest 701.
2015-01-08 02:38:14 +00:00
kosak
7123d83132
Fix gmock Action behaviour when return type is Wrapper
2014-11-17 02:04:46 +00:00
kosak
506340a66b
Generate relational matchers (Eq,Lt, etc) with CRTP instead of macro.
2014-11-17 01:47:54 +00:00
kosak
d370f85b02
Call move() by qualified name (::testing::internal::move() or just internal::move()).
...
Pull in gtest 696.
2014-11-17 01:14:16 +00:00
kosak
389bad61e2
Silence a signedness-comparison warning in gmock-actions_test.
...
include <functional> when using std::function in gmock.
2014-11-17 01:08:51 +00:00
kosak
3d1c78b2bf
Add ByMove() modifier for the Return() action. Pull in gtest 695.
2014-11-17 00:56:52 +00:00
kosak
5b9cbbb16d
Distinguish between C++11 language and library support for std::function, std::begin, std::end, and std::move in gtest and gmock.
...
Bring in gtest 694.
2014-11-17 00:28:55 +00:00
kosak
2336e9c171
Defines the UnorderedPointwise(m, container) matcher, which is like Pointwise(m, container) but ignores the order of the elements.
2014-07-28 22:57:30 +00:00
kosak
06678924fa
Allows {Unordered,}ElementsAreArray() to accept any STL-style container as the parameter.
2014-07-28 20:01:28 +00:00
kosak
a9e02a9178
Add MockFunction::AsStdFunction(). Also pull in gtest 688.
2014-06-17 23:19:54 +00:00
billydonahue
1f5fdea417
Push several shanges:
...
Make single argument constructors explicit in macros.
Remove NOMINMAX macro.
Add macros for disabling Microsoft Visual C++ warnings.
Add WhenDynamicCastTo<T> matcher.
A matcher that matches a pointer that matches inner_matcher when
dynamic_cast<T> is applied.
Add IWYU export pragmas to the tuple include lines.
Fix NativeArray to not require a copy constructor unless we ask for one.
This allows ElementsAre() to support non-copyable types.
Examine WINAPI_FAMILY_PARTITION macros to better distinguish windows platforms.
Author: martin@martin.st
From: https://codereview.appspot.com/57220043/
2014-05-19 17:54:51 +00:00
kosak
bd0188320d
Export tuple and friends in the ::testing namespace.
2014-04-02 20:30:00 +00:00
kosak
b6a348862b
Introduce a BeginEndDistanceIs matcher for containers such as std::forward_list
...
which lack a size() member.
Also pull in gtest 678.
2014-03-12 21:06:46 +00:00
kosak
b5c81098a8
Support mocking methods with move-only return types.
2014-01-29 06:41:44 +00:00
kosak
b93d0f10d5
Make Google Mock build cleanly on Visual Studio 2010, 2012, 2013.
2014-01-13 22:28:01 +00:00
kosak
04ce8521f4
Adds a note in the "uninteresting mock method call" warning to advise people how to handle the warning.
...
Clarifies the purpose of utilities in gmock-port.h and adds guidance w.r.t. gmock-port.h vs gtest-port.h.
Pulls in gtest r674.
2014-01-12 23:42:34 +00:00
kosak
18489fa4f8
Distinguish between C++11 language and library support for <initializer_list>.
...
Fix spelling: repositary -> repository.
Pull in gtest 671.
2013-12-04 23:49:07 +00:00
kosak
5f2a6ca4fd
Don't copy the argument in SafeMatcherCast because it's not safe.
2013-12-03 01:43:07 +00:00
zhanyong.wan
1cc1d4bcec
Makes some container matchers accept initializer lists in C++11 mode and work with stream-like containers that don't have size() or empty(); exposes StringMatchResultListener for defining composite matchers.
2013-08-08 18:41:51 +00:00
zhanyong.wan
5579c1a8b1
Makes UnorderedElementsAre*() work with containers that don't have size() or empty().
2013-07-30 06:16:21 +00:00
zhanyong.wan
fb25d53911
Adds matchers UnorderedElementsAre[Array]() (by Billy Donahue); pulls in
...
gtest r660.
2013-07-28 08:24:00 +00:00
zhanyong.wan
2989703ed8
Fixes uses of pair to std::pair; pulls in gtest r655.
2013-06-20 18:59:15 +00:00
zhanyong.wan
616180e684
New floating-point matchers: DoubleNear() and friends;
...
AllOf() and AnyOf() can accept any number of arguments now in C++11 mode.
2013-06-18 18:49:51 +00:00
zhanyong.wan
f4274520da
Makes EXPECT_THAT typesafe; updates CHANGES for 1.7.0; pulls in gtest r653
2013-04-24 02:49:43 +00:00
zhanyong.wan
a9a59e06dd
Makes WhenSorted() support associative containers (by billydonahue@google.com).
2013-03-27 16:14:55 +00:00
zhanyong.wan
1f122a06e6
Adds special support for matching StringPiece. Pulls in gtest r646.
2013-03-25 16:27:03 +00:00
zhanyong.wan
2eab17b76d
Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode.
2013-03-08 17:53:24 +00:00
zhanyong.wan
c896504e41
Improves the tests for nice, naggy, and strict mocks.
2013-03-01 07:10:07 +00:00
zhanyong.wan
20d1a235bc
Allows the return type of a mock method to contain unprotected commas.
2013-03-01 06:58:38 +00:00
zhanyong.wan
844fa94976
Implements NaggyMock.
2013-03-01 01:54:22 +00:00
zhanyong.wan
a31d9ce290
Implements matcher SizeIs().
2013-03-01 01:50:17 +00:00
zhanyong.wan
83f6b08b5f
Clarifies how to implement MatcherInterface.
2013-03-01 01:47:35 +00:00
zhanyong.wan
320814aca0
Implements matcher IsEmpty(); also pulls in gtest r643.
2013-03-01 00:20:30 +00:00
zhanyong.wan
edd4ab4945
Makes googlemock throw a runtime_error instead of abort when a mock
...
method with no default value is invoked (if exceptions are enabled).
2013-02-28 22:58:51 +00:00
jgm
38513a8bb1
Unfortunately, the svn repo is a bit out of date. This commit contains 8
...
changes that haven't made it to svn. The descriptions of each change are listed
below.
- Fixes some python shebang lines.
- Add ElementsAreArray overloads to gmock. ElementsAreArray now makes a copy of
its input elements before the conversion to a Matcher. ElementsAreArray can
now take a vector as input. ElementsAreArray can now take an iterator pair as
input.
- Templatize MatchAndExplain to allow independent string types for the matcher
and matchee. I also templatized the ConstCharPointer version of
MatchAndExplain to avoid calls with "char*" from using the new templated
MatchAndExplain.
- Fixes the bug where the constructor of the return type of ElementsAre() saves
a reference instead of a copy of the arguments.
- Extends ElementsAre() to accept arrays whose sizes aren't known.
- Switches gTest's internal FilePath class from testing::internal::String to
std::string. testing::internal::String was introduced when gTest couldn't
depend on std::string. It's now deprecated.
- Switches gTest & gMock from using testing::internal::String objects to
std::string. Some static methods of String are still in use. We may be able
to remove some but not all of them. In particular, String::Format() should
eventually be removed as it truncates the result at 4096 characters, often
causing problems.
2012-11-15 15:50:36 +00:00
vladlosev
ada23475e2
Makes gmock's Pointee() work for optional<T> (by Jeffrey Yasskin).
2012-08-14 15:38:49 +00:00
zhanyong.wan
2fd619edd3
Pulls in gtest r615.
...
Renames internal enums to the kFoo naming style.
Fixes gmock doctor to work with newer versions of Clang.
2012-05-31 20:40:56 +00:00
jgm
79a367eb21
Reduced template instantiation depth for the AllOf and AnyOf matchers. Also some formatting changes.
2012-04-10 16:02:11 +00:00
vladlosev
9bcb5f9146
Fixes a lock reentrancy when destroying a mock causes destruction of another mock (issue 79) (by Aaron Jacobs).
2011-10-24 23:41:07 +00:00
vladlosev
4d60a596b4
Expressed the thread-safety annotations in code, replacing the existing comment-based system (by Aaron Jacobs).
2011-10-24 21:16:22 +00:00
zhanyong.wan
898725cf47
Implements matchers WhenSorted() and WhenSortedBy(); pulls in gtest r595.
2011-09-16 16:45:39 +00:00
vladlosev
587c1b37c2
Adds support for building Google Mock as a shared library (DLL).
2011-05-20 00:42:22 +00:00
zhanyong.wan
8d3dc0cdd8
simplifies TrulyMatcher and adds a test for it
2011-04-14 19:37:06 +00:00
vladlosev
dd28d536eb
Updates conditional directives to be consistent with the rest of the project.
2011-04-14 02:42:15 +00:00
vladlosev
e73cf452a5
Corrects condition to compile out MSVC's pragmas. This fixes the build on MinGW.
2011-04-13 22:12:00 +00:00
vladlosev
ab29bb6fcd
Removes commas from last items in enums (a C++ standard compliance fix).
2011-04-08 01:32:32 +00:00
zhanyong.wan
86d2eeb112
Prevents ADL in AllOf() and AnyOf() (by Manuel Klimek).
2011-03-16 17:10:39 +00:00
zhanyong.wan
fc8c6c479a
Disables SetArgPointee("string literal") for GCC 4.0- and Symbian, and
...
adds support for SetArgPointee(L"wide string literal") -- by Vlad Losev.
2011-03-09 01:18:08 +00:00
zhanyong.wan
658ac0b71a
Indents preprocessor directives.
2011-02-24 07:29:13 +00:00
zhanyong.wan
ed6c9277bb
Makes Google Mock compile much faster and use much less memory; reviewed by Nico Weber. This fixes issue 68.
2011-02-23 19:39:27 +00:00
vladlosev
e5121b5a82
Improves cross-platform compatibility of gmock output. This fixes issue 135.
2011-02-11 23:50:38 +00:00
zhanyong.wan
5b61ce3ee5
Picks up gtest r536; renames implicit_cast and down_cast to reduce the chance of clash (by Roman Perepelitsa); enables gmock_gen.py to handle storage specifiers (by Steve Fox).
2011-02-01 00:00:03 +00:00
zhanyong.wan
a684b5a526
Enables SetArgPointee<>() to accept a string literal; removes a self-assignment warning; teaches gmock doctor to diagnose TTB with Clang; picks up gtest r525.
2010-12-02 23:30:50 +00:00
vladlosev
88032d8e0f
Adds comment clarifying the use of default-constructed matchers.
2010-11-17 23:29:21 +00:00
zhanyong.wan
2321b2a675
Adds action SaveArgPointee.
2010-10-14 06:51:27 +00:00
zhanyong.wan
5921483640
Adds SetArgPointee to replace SetArgumentPointee.
2010-10-05 05:58:51 +00:00
zhanyong.wan
736baa8ac0
Prints the type of the actual value as part of a match message when appropriate.
2010-09-27 17:44:16 +00:00
zhanyong.wan
53e08c44dd
Include gtest and gmock headers as user headers instead of system headers.
2010-09-14 05:38:21 +00:00
zhanyong.wan
ccedc1c933
Removes some gmock internal macros; sorts the file lists in Makefile.am; picks up gtest r454.
2010-08-09 22:46:12 +00:00
zhanyong.wan
e3bd0981ca
Implements ReturnPointee() and ReturnRefOfCopy().
2010-07-03 00:16:42 +00:00
zhanyong.wan
02c1505ebf
Increases the maximum arity of AllOf() and AnyOf() to 10, by Marcus Börger.
2010-06-09 19:21:30 +00:00
zhanyong.wan
b4140808f9
Replaces Python-style interpolation with arbitrary C++ string expression in MATCHER* descriptions.
2010-06-08 22:53:57 +00:00
zhanyong.wan
ab5b77c179
Implements Pointwise().
2010-05-17 19:32:48 +00:00
vladlosev
e2e8ba401d
Renames test script flags.
2010-05-13 18:16:03 +00:00
zhanyong.wan
02f7106557
Moves the universal printer from gmock to gtest (by Vlad Losev).
2010-05-10 17:14:29 +00:00
zhanyong.wan
33605ba454
Adds Each(m) (by Wojtek Moczydlowski); removes scripts/test/Makefile (by Zhanyong Wan); pulls in gtest r424.
2010-04-22 23:37:47 +00:00
zhanyong.wan
b1c7f93c52
Improves matcher messages across the board.
2010-03-24 17:35:11 +00:00
zhanyong.wan
676e8cc609
Fixes the explanation generated by many composite matchers (by Manuel Klimek); publishes the gmock value printer as testing::PrintToString() (by Zhanyong Wan).
2010-03-16 20:01:51 +00:00
zhanyong.wan
a862f1de30
Adds IsInterested() to MatchResultListener; clarifies the format of matcher description and match result explanation; renames the free function MatchAndExplain() to ExplainMatchResult() to avoid it being hidden inside a MATCHER* definition.
2010-03-15 21:23:04 +00:00
zhanyong.wan
34b034c21e
Adds a free function MatchAndExplain().
2010-03-05 21:23:23 +00:00
zhanyong.wan
5905ba00fe
Adds threading support (by Vlad Losev); updates the version number (by Zhanyong Wan); adds release notes for 1.5.0 (by Vlad Losev).
2010-02-24 17:21:37 +00:00
zhanyong.wan
db22c22782
BREAKING CHANGE: drops the old matcher API. See http://code.google.com/p/googlemock/wiki/FrequentlyAskedQuestions for details.
2010-01-28 21:52:29 +00:00
zhanyong.wan
d14aaed74b
Enables regex matchers on all platforms.
2010-01-14 05:36:32 +00:00
zhanyong.wan
6953a725fc
Allows Field() and Property() to work when the matcher argument is a pointer passed by reference.
2010-01-13 05:15:07 +00:00
zhanyong.wan
e122e457a6
Converts more matchers to the new API; fixes MatchAndExplain() for polymorphic matchers to allow non-const reference arguments.
2010-01-12 09:03:52 +00:00
zhanyong.wan
821133180c
Implements the new matcher API.
2010-01-08 21:55:40 +00:00
zhanyong.wan
32de5f5376
Fixes a slew of compiler warnings and turns on "warning as error" in the scons build.
2009-12-23 00:13:23 +00:00
zhanyong.wan
39bf784f83
Removes uses of GTEST_HAS_STD_STRING.
2009-12-16 23:36:08 +00:00
zhanyong.wan
a95c6a5a69
Fixes a C++-standard-compliance bug in gmock-printers.h.
2009-12-02 08:36:42 +00:00
zhanyong.wan
f6d6a22b8e
Fixes Cygwin compatibility (by Vlad Losev); Improves Python tests (by Vlad Losev); Fixes ambiguous call to implicit_cast; Uses gtest's SkipPrefix() instead gmock's own (by Vlad Losev).
2009-12-01 19:42:25 +00:00
zhanyong.wan
19eb9e9e3d
Pulls in gtest r344; improves implicit_cast (by Zhanyong Wan); makes the Python tests work on Windows (by Vlad Losev); adds run_tests.py (by Vlad Losev).
2009-11-24 20:23:18 +00:00
vladlosev
79b83505bc
Updates IsNull and NotNull matchers to work with smart pointers.
2009-11-18 00:43:37 +00:00
vladlosev
201ac16191
Enables gmock's implicit_cast to work with source types that have a non-const conversion operator (by Zhanyong Wan).
2009-11-18 00:12:05 +00:00
vladlosev
a070cbd91c
Enables gmock's implicit_cast to work with source types that
2009-11-18 00:09:28 +00:00
zhanyong.wan
21a5846afd
Makes gmock-generated-function-mockers.h conform to the C++ standard.
2009-11-12 19:18:08 +00:00
vladlosev
6c54a5e1f9
Enables more verbose output for expectations (by Sverre Sundsdal); Fixes information loss warning when compiled by VC8.0 with /Wp64; Skips two tests on Windows Mobile that don't work there.
2009-10-21 06:15:34 +00:00
zhanyong.wan
7c95d8346e
Works around a Symbian compiler bug that causes memory leak (by Mika Raento).
2009-10-01 21:56:16 +00:00
zhanyong.wan
f3aa4d2934
Implements the MockFunction class.
2009-09-25 22:34:47 +00:00
zhanyong.wan
95b12332c3
Makes gmock work on Symbian (both 3rd & 5th editions), original patch contributed by Mika Raento.
2009-09-25 18:55:50 +00:00
zhanyong.wan
2d970ee3ba
Adds the IsNull() matcher.
2009-09-24 21:41:36 +00:00
zhanyong.wan
f7af24c7de
Simplifies gmock code using gtest's OS-indicating macros.
2009-09-24 21:17:24 +00:00
zhanyong.wan
f47a2df57b
Makes gmock compile on minGW, which uses gcc 3.4.5.
2009-09-24 16:39:30 +00:00
zhanyong.wan
4bd79e4f25
Simplifies the definition of NativeArray. Works around a VC bug in StrictMock & NiceMock.
2009-09-16 17:38:08 +00:00
zhanyong.wan
f5e1ce5b92
Adds new matcher Pair(). Replaces GMOCK_CHECK_ with GTEST_CHECK_ (by Vlad Losev).
2009-09-16 07:02:02 +00:00
zhanyong.wan
2b43a9ecd1
Adds mutable_impl() and impl() to PolymorphicMatcher (by Zhanyong Wan); Enables gMock to compile with VC 7.1 (by Vlad Losev).
2009-08-31 23:51:23 +00:00
zhanyong.wan
0ea67f88ae
Improves protobuf print format.
2009-08-14 04:50:02 +00:00
zhanyong.wan
9571b28675
Removes duplicated definition of SetArgumentPointee (by Vlad Losev); Makes gmock compilable on platforms that don't have ::abort() (by Acadeli Checa); Fixes compatibility with Symbian's STLport (by Acadeli Checa).
2009-08-07 07:15:56 +00:00
zhanyong.wan
a18423e0ee
Re-organizes the file structure for actions.
2009-07-22 23:58:19 +00:00