summaryrefslogtreecommitdiff
path: root/test
Commit message (Expand)AuthorAgeFilesLines
* Injection point for GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_kosak@google.com2015-07-281-0/+5
* Inject a mock stack trace getter.kosak@google.com2015-07-281-10/+42
* Tests based on GTEST_HAS_STD_UNIQUE_PTR_ and GTEST_HAS_STD_SHARED_PTR_.kosak@google.com2015-07-271-0/+18
* Missing diff that should have gone along with the pull of gtest 738.kosak@google.com2015-07-271-39/+0
* Explicitly specify return value for lambda in AsStdFunction() to ensure itkosak@google.com2015-07-241-0/+10
* Remove some tests.kosak@google.com2015-07-191-19/+2
* Fix EXPECT_THAT() to support literal strings as a second argument.kosak@google.com2015-04-281-0/+15
* Change IsNull and NotNull to use ==/!= nullptr in C++11.kosak@google.com2015-04-281-0/+18
* Suppresses the stack trace in a warning for uninteresting call by default; th...kosak@google.com2015-02-142-10/+21
* In C++11 and above, makes a mock method whose return type is defaultkosak@google.com2015-02-143-63/+102
* Make ReturnNull() support unique_ptr and shared_ptr.kosak@google.com2015-01-081-0/+12
* Makes DoubleNear() print the diff between the actual and the expected value w...kosak@google.com2015-01-081-0/+13
* Fix gmock-matchers_test's ConstIter.kosak@google.com2014-11-171-2/+2
* Fix gmock Action behaviour when return type is Wrapperkosak@google.com2014-11-171-0/+20
* Generate relational matchers (Eq,Lt, etc) with CRTP instead of macro.kosak@google.com2014-11-171-2/+2
* Silence a signedness-comparison warning in gmock-actions_test.kosak@google.com2014-11-171-2/+2
* Add ByMove() modifier for the Return() action. Pull in gtest 695.kosak@google.com2014-11-171-3/+39
* Distinguish between C++11 language and library support for std::function, std...kosak@google.com2014-11-173-10/+10
* Defines the UnorderedPointwise(m, container) matcher, which is like Pointwise...kosak@google.com2014-07-281-67/+192
* Allows {Unordered,}ElementsAreArray() to accept any STL-style container as th...kosak@google.com2014-07-281-1/+26
* Add MockFunction::AsStdFunction(). Also pull in gtest 688.kosak@google.com2014-06-171-0/+13
* Push several shanges:billydonahue@google.com2014-05-193-11/+144
* Export tuple and friends in the ::testing namespace.kosak@google.com2014-04-027-27/+24
* Implement threading support for gmock on Windows.kosak@google.com2014-03-241-0/+4
* Introduce a BeginEndDistanceIs matcher for containers such as std::forward_listkosak@google.com2014-03-121-0/+61
* Suppress "Conditional expression is constant" warning on Visual Studio.kosak@google.com2014-01-292-0/+4
* Support mocking methods with move-only return types.kosak@google.com2014-01-291-0/+59
* Make Google Mock build cleanly on Visual Studio 2010, 2012, 2013.kosak@google.com2014-01-132-11/+22
* Adds a note in the "uninteresting mock method call" warning to advise people ...kosak@google.com2014-01-122-4/+16
* Distinguish between C++11 language and library support for <initializer_list>.kosak@google.com2013-12-042-4/+4
* Fix warnings encountered with clang -Wall, and pull in gtest 670.kosak@google.com2013-12-032-37/+33
* Clarify the rationale for gmock_all_test.cc, and pull in gtest 669kosak@google.com2013-12-031-2/+5
* Don't copy the argument in SafeMatcherCast because it's not safe.kosak@google.com2013-12-031-0/+23
* avoids clash with the max() macro on Windowszhanyong.wan2013-09-181-95/+60
* fixes the bug reported by Andrzej Jarzabek where 2 gmock tests fail when buil...zhanyong.wan2013-09-161-2/+2
* makes googlemock generator handle some class templates; pulls in gtest r662zhanyong.wan2013-09-062-11/+30
* Makes some container matchers accept initializer lists in C++11 mode and work...zhanyong.wan2013-08-082-1/+108
* Makes UnorderedElementsAre*() work with containers that don't have size() or ...zhanyong.wan2013-07-301-1/+31
* Adds matchers UnorderedElementsAre[Array]() (by Billy Donahue); pulls inzhanyong.wan2013-07-282-7/+441
* New floating-point matchers: DoubleNear() and friends;zhanyong.wan2013-06-183-2/+256
* Makes EXPECT_THAT typesafe; updates CHANGES for 1.7.0; pulls in gtest r653zhanyong.wan2013-04-241-0/+9
* Fixes some compatibility issues with STLport.zhanyong.wan2013-04-041-3/+3
* Makes WhenSorted() support associative containers (by billydonahue@google.com).zhanyong.wan2013-03-271-0/+161
* Adds special support for matching StringPiece. Pulls in gtest r646.zhanyong.wan2013-03-251-0/+38
* Adds a cmake target for gmock_ex_test; also fixes name shadowing warnings.zhanyong.wan2013-03-011-7/+7
* Improves the tests for nice, naggy, and strict mocks.zhanyong.wan2013-03-013-23/+74
* Allows the return type of a mock method to contain unprotected commas.zhanyong.wan2013-03-011-1/+49
* Removes unused variables and functions.zhanyong.wan2013-03-013-57/+27
* Implements NaggyMock.zhanyong.wan2013-03-011-6/+100
* Implements matcher SizeIs().zhanyong.wan2013-03-011-0/+59