summaryrefslogtreecommitdiff
path: root/include
Commit message (Expand)AuthorAgeFilesLines
* Rename custom/callback-actions.h[.pump] =>HEADmasterkosak@google.com2015-07-285-14/+14
* Add an injection point for customizing GMOCK_DECLARE_bool and the like.kosak@google.com2015-07-282-0/+51
* Inject customization point for gmock-matchers.hkosak@google.com2015-07-272-1/+43
* Explicitly specify return value for lambda in AsStdFunction() to ensure itkosak@google.com2015-07-242-12/+12
* Move Callback-related generated actions to a custom/ file.kosak@google.com2015-07-194-167/+164
* Mark the default constructor of Matcher<> explicit.kosak@google.com2015-07-131-1/+1
* Fix EXPECT_THAT() to support literal strings as a second argument.kosak@google.com2015-04-281-3/+4
* Change IsNull and NotNull to use ==/!= nullptr in C++11.kosak@google.com2015-04-281-0/+8
* In C++11 and above, makes a mock method whose return type is defaultkosak@google.com2015-02-141-9/+48
* This change adds an explicit invocation of std::move to workaround a problemkosak@google.com2015-02-141-0/+7
* Make ReturnNull() support unique_ptr and shared_ptr.kosak@google.com2015-01-081-1/+7
* Makes DoubleNear() print the diff between the actual and the expected value w...kosak@google.com2015-01-082-37/+60
* Fix gmock Action behaviour when return type is Wrapperkosak@google.com2014-11-171-2/+6
* Generate relational matchers (Eq,Lt, etc) with CRTP instead of macro.kosak@google.com2014-11-171-91/+164
* Call move() by qualified name (::testing::internal::move() or just internal::...kosak@google.com2014-11-172-6/+10
* Silence a signedness-comparison warning in gmock-actions_test.kosak@google.com2014-11-172-0/+8
* Add ByMove() modifier for the Return() action. Pull in gtest 695.kosak@google.com2014-11-172-16/+54
* Distinguish between C++11 language and library support for std::function, std...kosak@google.com2014-11-173-25/+25
* Defines the UnorderedPointwise(m, container) matcher, which is like Pointwise...kosak@google.com2014-07-281-1/+144
* Allows {Unordered,}ElementsAreArray() to accept any STL-style container as th...kosak@google.com2014-07-281-10/+11
* Add MockFunction::AsStdFunction(). Also pull in gtest 688.kosak@google.com2014-06-172-2/+125
* Push several shanges:billydonahue@google.com2014-05-196-12/+105
* Export tuple and friends in the ::testing namespace.kosak@google.com2014-04-0212-348/+282
* Introduce a BeginEndDistanceIs matcher for containers such as std::forward_listkosak@google.com2014-03-121-0/+72
* Support mocking methods with move-only return types.kosak@google.com2014-01-293-41/+146
* Make Google Mock build cleanly on Visual Studio 2010, 2012, 2013.kosak@google.com2014-01-131-7/+17
* Adds a note in the "uninteresting mock method call" warning to advise people ...kosak@google.com2014-01-121-4/+12
* Distinguish between C++11 language and library support for <initializer_list>.kosak@google.com2013-12-041-4/+4
* Don't copy the argument in SafeMatcherCast because it's not safe.kosak@google.com2013-12-031-5/+5
* Makes some container matchers accept initializer lists in C++11 mode and work...zhanyong.wan2013-08-081-53/+102
* Makes UnorderedElementsAre*() work with containers that don't have size() or ...zhanyong.wan2013-07-301-7/+7
* Adds matchers UnorderedElementsAre[Array]() (by Billy Donahue); pulls inzhanyong.wan2013-07-283-597/+860
* Fixes uses of pair to std::pair; pulls in gtest r655.zhanyong.wan2013-06-201-3/+3
* New floating-point matchers: DoubleNear() and friends;zhanyong.wan2013-06-181-16/+194
* Makes EXPECT_THAT typesafe; updates CHANGES for 1.7.0; pulls in gtest r653zhanyong.wan2013-04-241-2/+4
* Makes WhenSorted() support associative containers (by billydonahue@google.com).zhanyong.wan2013-03-272-1/+18
* Adds special support for matching StringPiece. Pulls in gtest r646.zhanyong.wan2013-03-251-0/+45
* Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic m...zhanyong.wan2013-03-081-1/+1
* Improves the tests for nice, naggy, and strict mocks.zhanyong.wan2013-03-011-1/+2
* Allows the return type of a mock method to contain unprotected commas.zhanyong.wan2013-03-012-328/+397
* Implements NaggyMock.zhanyong.wan2013-03-013-75/+202
* Implements matcher SizeIs().zhanyong.wan2013-03-011-0/+64
* Clarifies how to implement MatcherInterface.zhanyong.wan2013-03-011-4/+21
* Implements matcher IsEmpty(); also pulls in gtest r643.zhanyong.wan2013-03-012-2/+61
* Makes googlemock throw a runtime_error instead of abort when a mockzhanyong.wan2013-02-281-7/+20
* Unfortunately, the svn repo is a bit out of date. This commit contains 8jgm@google.com2012-11-155-154/+274
* Makes gmock's Pointee() work for optional<T> (by Jeffrey Yasskin).vladlosev2012-08-141-1/+1
* Pulls in gtest r615.zhanyong.wan2012-05-314-20/+13
* Reduced template instantiation depth for the AllOf and AnyOf matchers. Also s...jgm@google.com2012-04-1011-292/+553
* Fixes a lock reentrancy when destroying a mock causes destruction of another ...vladlosev2011-10-241-3/+18