1. cfe466a Use a templated helper to wrap the cast by Mark Mentovai · 9 years ago
  2. cbce23f Leave decltype(max_ulps_) alone and cast, not sure this is better by Mark Mentovai · 9 years ago
  3. 8b085f0 Fix warnings encountered in MSVC build of gtest/gmock tests by Mark Mentovai · 9 years ago
  4. 71a26ac Merge pull request #612 from mark-chromium/gmock_rtti by Billy Donahue · 9 years ago
  5. c8a1050 googlemock: Disable WhenDynamicCastToTest tests when RTTI is off by Mark Mentovai · 9 years ago
  6. a0435dc googlemock: Support C++11 language with pre-C++11 library by Mark Mentovai · 9 years ago
  7. affb09e move googlemock files into googlemock/ subdir by Billy Donahue · 9 years ago[Renamed from test/gmock-matchers_test.cc]
  8. f6df4c6 Remove some tests. by kosak · 9 years ago
  9. 9b1a944 Fix EXPECT_THAT() to support literal strings as a second argument. by kosak · 9 years ago
  10. 6305ff5 Change IsNull and NotNull to use ==/!= nullptr in C++11. by kosak · 9 years ago
  11. 6b81780 Makes DoubleNear() print the diff between the actual and the expected value when the match fails. by kosak · 10 years ago
  12. cd99eb0 Fix gmock-matchers_test's ConstIter. by kosak · 10 years ago
  13. 506340a Generate relational matchers (Eq,Lt, etc) with CRTP instead of macro. by kosak · 10 years ago
  14. 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 · 10 years ago
  15. 2336e9c Defines the UnorderedPointwise(m, container) matcher, which is like Pointwise(m, container) but ignores the order of the elements. by kosak · 10 years ago
  16. 0667892 Allows {Unordered,}ElementsAreArray() to accept any STL-style container as the parameter. by kosak · 10 years ago
  17. 1f5fdea Push several shanges: by billydonahue · 10 years ago
  18. bd01883 Export tuple and friends in the ::testing namespace. by kosak · 11 years ago
  19. 15d61e4 Implement threading support for gmock on Windows. by kosak · 11 years ago
  20. b6a3488 Introduce a BeginEndDistanceIs matcher for containers such as std::forward_list by kosak · 11 years ago
  21. 18489fa Distinguish between C++11 language and library support for <initializer_list>. by kosak · 11 years ago
  22. 6414d80 Fix warnings encountered with clang -Wall, and pull in gtest 670. by kosak · 11 years ago
  23. 5f2a6ca Don't copy the argument in SafeMatcherCast because it's not safe. by kosak · 11 years ago
  24. 35877b7 avoids clash with the max() macro on Windows by zhanyong.wan · 11 years ago
  25. 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 · 11 years ago
  26. 5579c1a Makes UnorderedElementsAre*() work with containers that don't have size() or empty(). by zhanyong.wan · 11 years ago
  27. fb25d53 Adds matchers UnorderedElementsAre[Array]() (by Billy Donahue); pulls in by zhanyong.wan · 11 years ago
  28. 616180e New floating-point matchers: DoubleNear() and friends; by zhanyong.wan · 11 years ago
  29. f427452 Makes EXPECT_THAT typesafe; updates CHANGES for 1.7.0; pulls in gtest r653 by zhanyong.wan · 11 years ago
  30. a9a59e0 Makes WhenSorted() support associative containers (by billydonahue@google.com). by zhanyong.wan · 12 years ago
  31. 1f122a0 Adds special support for matching StringPiece. Pulls in gtest r646. by zhanyong.wan · 12 years ago
  32. a31d9ce Implements matcher SizeIs(). by zhanyong.wan · 12 years ago
  33. 320814a Implements matcher IsEmpty(); also pulls in gtest r643. by zhanyong.wan · 12 years ago
  34. 38513a8 Unfortunately, the svn repo is a bit out of date. This commit contains 8 by jgm · 12 years ago
  35. ada2347 Makes gmock's Pointee() work for optional<T> (by Jeffrey Yasskin). by vladlosev · 12 years ago
  36. 79a367e Reduced template instantiation depth for the AllOf and AnyOf matchers. Also some formatting changes. by jgm · 13 years ago
  37. 898725c Implements matchers WhenSorted() and WhenSortedBy(); pulls in gtest r595. by zhanyong.wan · 13 years ago
  38. 587c1b3 Adds support for building Google Mock as a shared library (DLL). by vladlosev · 13 years ago
  39. 8d3dc0c simplifies TrulyMatcher and adds a test for it by zhanyong.wan · 14 years ago
  40. aa43220 Changes diagnostic output of the question mark from '\?' to '?'. by vladlosev · 14 years ago
  41. 736baa8 Prints the type of the actual value as part of a match message when appropriate. by zhanyong.wan · 14 years ago
  42. 53e08c4 Include gtest and gmock headers as user headers instead of system headers. by zhanyong.wan · 14 years ago
  43. d60c5f4 Removes unused scons scripts; picks up gtest r446. by zhanyong.wan · 14 years ago
  44. 02c1505 Increases the maximum arity of AllOf() and AnyOf() to 10, by Marcus Börger. by zhanyong.wan · 14 years ago
  45. b414080 Replaces Python-style interpolation with arbitrary C++ string expression in MATCHER* descriptions. by zhanyong.wan · 14 years ago
  46. ab5b77c Implements Pointwise(). by zhanyong.wan · 14 years ago
  47. 33605ba Adds Each(m) (by Wojtek Moczydlowski); removes scripts/test/Makefile (by Zhanyong Wan); pulls in gtest r424. by zhanyong.wan · 15 years ago
  48. b1c7f93 Improves matcher messages across the board. by zhanyong.wan · 15 years ago
  49. 676e8cc Fixes the explanation generated by many composite matchers (by Manuel Klimek); publishes the gmock value printer as testing::PrintToString() (by Zhanyong Wan). by zhanyong.wan · 15 years ago
  50. a862f1d Adds IsInterested() to MatchResultListener; clarifies the format of matcher description and match result explanation; renames the free function MatchAndExplain() to ExplainMatchResult() to avoid it being hidden inside a MATCHER* definition. by zhanyong.wan · 15 years ago
  51. 34b034c Adds a free function MatchAndExplain(). by zhanyong.wan · 15 years ago
  52. db22c22 BREAKING CHANGE: drops the old matcher API. See http://code.google.com/p/googlemock/wiki/FrequentlyAskedQuestions for details. by zhanyong.wan · 15 years ago
  53. d14aaed Enables regex matchers on all platforms. by zhanyong.wan · 15 years ago
  54. 6953a72 Allows Field() and Property() to work when the matcher argument is a pointer passed by reference. by zhanyong.wan · 15 years ago
  55. 8211331 Implements the new matcher API. by zhanyong.wan · 15 years ago
  56. 32de5f5 Fixes a slew of compiler warnings and turns on "warning as error" in the scons build. by zhanyong.wan · 15 years ago
  57. e56daa7 Tests NotNull/IsNull with testing::internal::scoped_ptr. by vladlosev · 15 years ago
  58. 79b8350 Updates IsNull and NotNull matchers to work with smart pointers. by vladlosev · 15 years ago
  59. 95b1233 Makes gmock work on Symbian (both 3rd & 5th editions), original patch contributed by Mika Raento. by zhanyong.wan · 15 years ago
  60. 2d970ee Adds the IsNull() matcher. by zhanyong.wan · 15 years ago
  61. f5e1ce5 Adds new matcher Pair(). Replaces GMOCK_CHECK_ with GTEST_CHECK_ (by Vlad Losev). by zhanyong.wan · 15 years ago
  62. 04d6ed8 Simplifies the tests using EXPECT_DEATH_IF_SUPPORTED. by zhanyong.wan · 15 years ago
  63. 2b43a9e Adds mutable_impl() and impl() to PolymorphicMatcher (by Zhanyong Wan); Enables gMock to compile with VC 7.1 (by Vlad Losev). by zhanyong.wan · 15 years ago
  64. b5937da Adds the Key() matcher, by Marcus Borger. by zhanyong.wan · 15 years ago
  65. bf55085 Implements .With() as a synonym of .WithArguments(); implements AllArgs(m) as a synonym of m; relies on gtest-port to #include tuple; fixes a compatibility with Symbian. by zhanyong.wan · 15 years ago
  66. 2661c68 Implements the Args<k1, ..., kn>(m) matcher. by zhanyong.wan · 15 years ago
  67. b824316 Makes all container matchers work with (possibly multi-dimensional) native arrays; makes Contains() accept a matcher; adds Value(x, m); improves gmock doctor to diagnose the Type in Template Base disease. by zhanyong.wan · 15 years ago
  68. 16cf473 Finishes SafeMatcherCast by catching lossy arithmetic conversions at compile-time; uses ACTION_TEMPLATE to simplify the definition of many actions; makes mock object uncopyable; teaches gmock doctor about wrong MOCK_METHODn. by zhanyong.wan · 15 years ago
  69. 1849065 Partially implemented SafeMatcherCast (by Vlad Losev); updated the implementation of Not, AnyOf, and AllOf to use SafeMatcherCast (by Vlad Losev); implemented ACTION_TEMPLATE (by Zhanyong Wan); worked around bugs on Symbian (by Zhanyong Wan). by zhanyong.wan · 15 years ago
  70. 652540a Cleans up macro definitions. by zhanyong.wan · 16 years ago
  71. 4a5330d Implements custom description string for MATCHER*. by zhanyong.wan · 16 years ago
  72. 6a896b5 Implements ContainerEq. by zhanyong.wan · 16 years ago
  73. e35fdd9 Initial drop of Google Mock. The files are incomplete and thus may not build correctly yet. by shiqian · 16 years ago