aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Expand)AuthorAgeFilesLines
* Silence a signedness-comparison warning in gmock-actions_test.kosak2014-11-172-0/+8
* Add ByMove() modifier for the Return() action. Pull in gtest 695.kosak2014-11-172-16/+54
* Distinguish between C++11 language and library support for std::function, std...kosak2014-11-173-25/+25
* Defines the UnorderedPointwise(m, container) matcher, which is like Pointwise...kosak2014-07-281-1/+144
* Allows {Unordered,}ElementsAreArray() to accept any STL-style container as th...kosak2014-07-281-10/+11
* Add MockFunction::AsStdFunction(). Also pull in gtest 688.kosak2014-06-172-2/+125
* Push several shanges:billydonahue2014-05-196-12/+105
* Export tuple and friends in the ::testing namespace.kosak2014-04-0212-348/+282
* Introduce a BeginEndDistanceIs matcher for containers such as std::forward_listkosak2014-03-121-0/+72
* Support mocking methods with move-only return types.kosak2014-01-293-41/+146
* Make Google Mock build cleanly on Visual Studio 2010, 2012, 2013.kosak2014-01-131-7/+17
* Adds a note in the "uninteresting mock method call" warning to advise people ...kosak2014-01-121-4/+12
* Distinguish between C++11 language and library support for <initializer_list>.kosak2013-12-041-4/+4
* Don't copy the argument in SafeMatcherCast because it's not safe.kosak2013-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 8jgm2012-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...jgm2012-04-1011-292/+553
* Fixes a lock reentrancy when destroying a mock causes destruction of another ...vladlosev2011-10-241-3/+18
* Expressed the thread-safety annotations in code, replacing the existing comme...vladlosev2011-10-241-106/+116
* Implements matchers WhenSorted() and WhenSortedBy(); pulls in gtest r595.zhanyong.wan2011-09-161-0/+99
* Adds support for building Google Mock as a shared library (DLL).vladlosev2011-05-206-33/+36
* simplifies TrulyMatcher and adds a test for itzhanyong.wan2011-04-141-9/+9
* Updates conditional directives to be consistent with the rest of the project.vladlosev2011-04-141-2/+2
* Corrects condition to compile out MSVC's pragmas. This fixes the build on MinGW.vladlosev2011-04-131-4/+4
* Removes commas from last items in enums (a C++ standard compliance fix).vladlosev2011-04-082-4/+4
* Prevents ADL in AllOf() and AnyOf() (by Manuel Klimek).zhanyong.wan2011-03-162-22/+25
* Disables SetArgPointee("string literal") for GCC 4.0- and Symbian, andzhanyong.wan2011-03-091-0/+14
* Indents preprocessor directives.zhanyong.wan2011-02-248-29/+30
* Makes Google Mock compile much faster and use much less memory; reviewed by N...zhanyong.wan2011-02-234-559/+422
* Improves cross-platform compatibility of gmock output. This fixes issue 135.vladlosev2011-02-111-2/+2
* Picks up gtest r536; renames implicit_cast and down_cast to reduce the chance...zhanyong.wan2011-02-014-35/+35
* Enables SetArgPointee<>() to accept a string literal; removes a self-assignme...zhanyong.wan2010-12-021-0/+8
* Adds comment clarifying the use of default-constructed matchers.vladlosev2010-11-171-2/+3