- 5625dd3 Suppresses the stack trace in a warning for uninteresting call by default; the stack trace will still be printed when --gmock_verbose=info is printed. by kosak · 10 years ago
- d478a1f In C++11 and above, makes a mock method whose return type is default by kosak · 10 years ago
- 02d6479 This change adds an explicit invocation of std::move to workaround a problem by kosak · 10 years ago
- 53d49dc Make ReturnNull() support unique_ptr and shared_ptr. by kosak · 11 years ago
- 8e838ce Adding support to gmock_gen for nested templates. by kosak · 11 years ago
- 6b81780 Makes DoubleNear() print the diff between the actual and the expected value when the match fails. by kosak · 11 years ago
- 61adbcc Add support for C++11 explicitly defaulted and deleted special member functions in the gmock generator. by kosak · 11 years ago
- 055b6b1 Prevent gmock_gen from returning exit code zero on a failure to parse. by kosak · 11 years ago
- f58b49a Handle parameters without variable names when the type includes *, & or []. by kosak · 11 years ago
- 6e87b78 Update gmock_doctor to accept static_assert output. by kosak · 11 years ago
- cd99eb0 Fix gmock-matchers_test's ConstIter. by kosak · 11 years ago
- 7123d83 Fix gmock Action behaviour when return type is Wrapper by kosak · 11 years ago
- 506340a Generate relational matchers (Eq,Lt, etc) with CRTP instead of macro. by kosak · 11 years ago
- d370f85 Call move() by qualified name (::testing::internal::move() or just internal::move()). by kosak · 11 years ago
- 389bad6 Silence a signedness-comparison warning in gmock-actions_test. by kosak · 11 years ago
- 3d1c78b Add ByMove() modifier for the Return() action. Pull in gtest 695. by kosak · 11 years ago
- 5b9cbbb Distinguish between C++11 language and library support for std::function, std::begin, std::end, and std::move in gtest and gmock. by kosak · 11 years ago
- 2336e9c Defines the UnorderedPointwise(m, container) matcher, which is like Pointwise(m, container) but ignores the order of the elements. by kosak · 11 years ago
- 0667892 Allows {Unordered,}ElementsAreArray() to accept any STL-style container as the parameter. by kosak · 11 years ago
- a9e02a9 Add MockFunction::AsStdFunction(). Also pull in gtest 688. by kosak · 11 years ago
- 1f5fdea Push several shanges: by billydonahue · 11 years ago
- bd01883 Export tuple and friends in the ::testing namespace. by kosak · 11 years ago
- 15d61e4 Implement threading support for gmock on Windows. by kosak · 11 years ago
- c26f969 Make the gmock generator work with the 'override' keyword. Also pull in gtest 680. by kosak · 11 years ago
- b6a3488 Introduce a BeginEndDistanceIs matcher for containers such as std::forward_list by kosak · 11 years ago
- fc4aa1d Suppress "Conditional expression is constant" warning on Visual Studio. by kosak · 12 years ago
- b5c8109 Support mocking methods with move-only return types. by kosak · 12 years ago
- b93d0f1 Make Google Mock build cleanly on Visual Studio 2010, 2012, 2013. by kosak · 12 years ago
- 04ce852 Adds a note in the "uninteresting mock method call" warning to advise people how to handle the warning. by kosak · 12 years ago
- 18489fa Distinguish between C++11 language and library support for <initializer_list>. by kosak · 12 years ago
- 6414d80 Fix warnings encountered with clang -Wall, and pull in gtest 670. by kosak · 12 years ago
- b72d18c Clarify the rationale for gmock_all_test.cc, and pull in gtest 669 by kosak · 12 years ago
- 5f2a6ca Don't copy the argument in SafeMatcherCast because it's not safe. by kosak · 12 years ago
- 88080ee adds gmock_doctor.py to the distro by zhanyong.wan · 12 years ago
- 35877b7 avoids clash with the max() macro on Windows by zhanyong.wan · 12 years ago
- 6e0fba4 fixes the bug reported by Andrzej Jarzabek where 2 gmock tests fail when built with VS by zhanyong.wan · 12 years ago
- 45fef50 makes googlemock generator handle some class templates; pulls in gtest r662 by zhanyong.wan · 12 years ago
- 778358e adds more files to gmock's distro by zhanyong.wan · 12 years ago
- 35da814 fixes a typo by zhanyong.wan · 12 years ago
- 64bd62d adds gmock-more-matchers.h to the distro by zhanyong.wan · 12 years ago
- 1cc1d4b 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. by zhanyong.wan · 12 years ago
- 5579c1a Makes UnorderedElementsAre*() work with containers that don't have size() or empty(). by zhanyong.wan · 12 years ago
- fb25d53 Adds matchers UnorderedElementsAre[Array]() (by Billy Donahue); pulls in by zhanyong.wan · 12 years ago
- 2989703 Fixes uses of pair to std::pair; pulls in gtest r655. by zhanyong.wan · 12 years ago
- 616180e New floating-point matchers: DoubleNear() and friends; by zhanyong.wan · 12 years ago
- f427452 Makes EXPECT_THAT typesafe; updates CHANGES for 1.7.0; pulls in gtest r653 by zhanyong.wan · 12 years ago
- 061f1d4 Updates version number to 1.7.0 by zhanyong.wan · 12 years ago
- c10a35a Fixes some compatibility issues with STLport. by zhanyong.wan · 12 years ago
- a9a59e0 Makes WhenSorted() support associative containers (by billydonahue@google.com). by zhanyong.wan · 12 years ago
- 1f122a0 Adds special support for matching StringPiece. Pulls in gtest r646. by zhanyong.wan · 12 years ago
- 2eab17b Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode. by zhanyong.wan · 12 years ago
- a1a98f8 Adds a cmake target for gmock_ex_test; also fixes name shadowing warnings. by zhanyong.wan · 12 years ago
- c896504 Improves the tests for nice, naggy, and strict mocks. by zhanyong.wan · 12 years ago
- 20d1a23 Allows the return type of a mock method to contain unprotected commas. by zhanyong.wan · 12 years ago
- 29be923 Removes unused variables and functions. by zhanyong.wan · 12 years ago
- 844fa94 Implements NaggyMock. by zhanyong.wan · 12 years ago
- a31d9ce Implements matcher SizeIs(). by zhanyong.wan · 12 years ago
- 83f6b08 Clarifies how to implement MatcherInterface. by zhanyong.wan · 12 years ago
- 320814a Implements matcher IsEmpty(); also pulls in gtest r643. by zhanyong.wan · 12 years ago
- edd4ab4 Makes googlemock throw a runtime_error instead of abort when a mock by zhanyong.wan · 12 years ago
- cf40604 Adds -pthread and switches -I to -isystem in build instructions; by zhanyong.wan · 12 years ago
- 40fa8ff Adds the LICENSE file to the distribution. by vladlosev · 13 years ago
- 38513a8 Unfortunately, the svn repo is a bit out of date. This commit contains 8 by jgm · 13 years ago
- ada2347 Makes gmock's Pointee() work for optional<T> (by Jeffrey Yasskin). by vladlosev · 13 years ago
- 2fd619e Pulls in gtest r615. by zhanyong.wan · 13 years ago
- 79a367e Reduced template instantiation depth for the AllOf and AnyOf matchers. Also some formatting changes. by jgm · 13 years ago
- 9bcb5f9 Fixes a lock reentrancy when destroying a mock causes destruction of another mock (issue 79) (by Aaron Jacobs). by vladlosev · 14 years ago
- 4d60a59 Expressed the thread-safety annotations in code, replacing the existing comment-based system (by Aaron Jacobs). by vladlosev · 14 years ago
- f44bdc7 Fixed Google Mock Doctor Clang regexes to work on both k8 and piii (by Greg Miller). by vladlosev · 14 years ago
- 0fd8396 Modifies gmock_doctor.py to work with GCC output that contains file:line:char positions and left and right quote characters (U+2018 and U+2019) instead of apostrophes (U+0027). by vladlosev · 14 years ago
- 898725c Implements matchers WhenSorted() and WhenSortedBy(); pulls in gtest r595. by zhanyong.wan · 14 years ago
- 5aa8dd9 Renames the license files. by vladlosev · 14 years ago
- eca38cd More Clang support improvements in Google Mock Doctor. by vladlosev · 14 years ago
- 787146b Improves support for Clang in Google Mock Doctor. by vladlosev · 14 years ago
- f4eeaed Fixes issue 139 and issue 140. by vladlosev · 14 years ago
- bce8134 Adds a DLL-related section to Google Mock's README. by vladlosev · 14 years ago
- 587c1b3 Adds support for building Google Mock as a shared library (DLL). by vladlosev · 14 years ago
- 47be72a A test to verify correcteness of Google Mock on multiple threads. by vladlosev · 14 years ago
- a63da04 Makes generation of fused sources contingent on availability of Python and pulls in gtest r580. by vladlosev · 14 years ago
- 8d3dc0c simplifies TrulyMatcher and adds a test for it by zhanyong.wan · 14 years ago
- 8d7c5ad Documents latest changes and pulls in gtest r570 by zhanyong.wan · 14 years ago
- dd28d53 Updates conditional directives to be consistent with the rest of the project. by vladlosev · 14 years ago
- e73cf45 Corrects condition to compile out MSVC's pragmas. This fixes the build on MinGW. by vladlosev · 14 years ago
- ab29bb6 Removes commas from last items in enums (a C++ standard compliance fix). by vladlosev · 14 years ago
- 52277c9 disables 'make install' by zhanyong.wan · 14 years ago
- 8e68753 fixes link errors in 'make check' by zhanyong.wan · 14 years ago
- aa43220 Changes diagnostic output of the question mark from '\?' to '?'. by vladlosev · 14 years ago
- 71d0862 Fixes Google Mock Doctor affected by the latest tweaks to Clang. by vladlosev · 14 years ago
- 86d2eeb Prevents ADL in AllOf() and AnyOf() (by Manuel Klimek). by zhanyong.wan · 14 years ago
- fc8c6c4 Disables SetArgPointee("string literal") for GCC 4.0- and Symbian, and by zhanyong.wan · 14 years ago
- 62a35fb Adds CMake scripts to gmock's release package. by zhanyong.wan · 14 years ago
- 79d82b6 Changes gmock's version to 1.6.0 and adds release notes. by zhanyong.wan · 14 years ago
- 658ac0b Indents preprocessor directives. by zhanyong.wan · 14 years ago
- ed6c927 Makes Google Mock compile much faster and use much less memory; reviewed by Nico Weber. This fixes issue 68. by zhanyong.wan · 14 years ago
- b3e9042 Adds project files for MSVC 2010 (by Fredrik Roubert). by vladlosev · 14 years ago
- e5121b5 Improves cross-platform compatibility of gmock output. This fixes issue 135. by vladlosev · 14 years ago
- 5b61ce3 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). by zhanyong.wan · 15 years ago
- a684b5a Enables SetArgPointee<>() to accept a string literal; removes a self-assignment warning; teaches gmock doctor to diagnose TTB with Clang; picks up gtest r525. by zhanyong.wan · 15 years ago
- 88032d8 Adds comment clarifying the use of default-constructed matchers. by vladlosev · 15 years ago
- 2321b2a Adds action SaveArgPointee. by zhanyong.wan · 15 years ago