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