1. 76c1c61 Fixes tests leaking altered values of GMOCK_FLAG(verbose) (issue 110). by vladlosev · 14 years ago
  2. 54af9ba Adds a synchronization test. by vladlosev · 14 years ago
  3. 33605ba Adds Each(m) (by Wojtek Moczydlowski); removes scripts/test/Makefile (by Zhanyong Wan); pulls in gtest r424. by zhanyong.wan · 14 years ago
  4. b1c7f93 Improves matcher messages across the board. by zhanyong.wan · 15 years ago
  5. 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
  6. 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
  7. 34b034c Adds a free function MatchAndExplain(). by zhanyong.wan · 15 years ago
  8. 470df42 Enables tests depending on stdout capturing (by Vlad Losev). by zhanyong.wan · 15 years ago
  9. 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
  10. d14aaed Enables regex matchers on all platforms. by zhanyong.wan · 15 years ago
  11. 6953a72 Allows Field() and Property() to work when the matcher argument is a pointer passed by reference. by zhanyong.wan · 15 years ago
  12. 8211331 Implements the new matcher API. by zhanyong.wan · 15 years ago
  13. 32de5f5 Fixes a slew of compiler warnings and turns on "warning as error" in the scons build. by zhanyong.wan · 15 years ago
  14. 39bf784 Removes uses of GTEST_HAS_STD_STRING. by zhanyong.wan · 15 years ago
  15. f6d6a22 Fixes Cygwin compatibility (by Vlad Losev); Improves Python tests (by Vlad Losev); Fixes ambiguous call to implicit_cast; Uses gtest's SkipPrefix() instead gmock's own (by Vlad Losev). by zhanyong.wan · 15 years ago
  16. 19eb9e9 Pulls in gtest r344; improves implicit_cast (by Zhanyong Wan); makes the Python tests work on Windows (by Vlad Losev); adds run_tests.py (by Vlad Losev). by zhanyong.wan · 15 years ago
  17. e56daa7 Tests NotNull/IsNull with testing::internal::scoped_ptr. by vladlosev · 15 years ago
  18. 79b8350 Updates IsNull and NotNull matchers to work with smart pointers. by vladlosev · 15 years ago
  19. 201ac16 Enables gmock's implicit_cast to work with source types that have a non-const conversion operator (by Zhanyong Wan). by vladlosev · 15 years ago
  20. a070cbd Enables gmock's implicit_cast to work with source types that by vladlosev · 15 years ago
  21. 2871bb4 Adds gmock_all_test.cc for compiling most gmock tests in a single file. by zhanyong.wan · 15 years ago
  22. 2e7c475 Adds a dummy test to gmock-port.test.cc. by zhanyong.wan · 15 years ago
  23. 6c54a5e Enables more verbose output for expectations (by Sverre Sundsdal); Fixes information loss warning when compiled by VC8.0 with /Wp64; Skips two tests on Windows Mobile that don't work there. by vladlosev · 15 years ago
  24. 79643f5 Changes gmock's version to 1.4.0. Also fixes a compiler warning. by zhanyong.wan · 15 years ago
  25. f3aa4d2 Implements the MockFunction class. by zhanyong.wan · 15 years ago
  26. 95b1233 Makes gmock work on Symbian (both 3rd & 5th editions), original patch contributed by Mika Raento. by zhanyong.wan · 15 years ago
  27. 2d970ee Adds the IsNull() matcher. by zhanyong.wan · 15 years ago
  28. f7af24c Simplifies gmock code using gtest's OS-indicating macros. by zhanyong.wan · 15 years ago
  29. a89034c Removes gmock's dependency on python2.4. by zhanyong.wan · 15 years ago
  30. bbd6e10 Picks up gtest r314. by zhanyong.wan · 15 years ago
  31. 93244dc Disbles two tests that crash on Symbian. by zhanyong.wan · 15 years ago
  32. 4bd79e4 Simplifies the definition of NativeArray. Works around a VC bug in StrictMock & NiceMock. by zhanyong.wan · 15 years ago
  33. f5e1ce5 Adds new matcher Pair(). Replaces GMOCK_CHECK_ with GTEST_CHECK_ (by Vlad Losev). by zhanyong.wan · 15 years ago
  34. c53b3dc Removes dead code in gmock-more-actions_test.cc. by zhanyong.wan · 15 years ago
  35. 04d6ed8 Simplifies the tests using EXPECT_DEATH_IF_SUPPORTED. by zhanyong.wan · 15 years ago
  36. 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
  37. 0ea67f8 Improves protobuf print format. by zhanyong.wan · 15 years ago
  38. 9571b28 Removes duplicated definition of SetArgumentPointee (by Vlad Losev); Makes gmock compilable on platforms that don't have ::abort() (by Acadeli Checa); Fixes compatibility with Symbian's STLport (by Acadeli Checa). by zhanyong.wan · 15 years ago
  39. a18423e Re-organizes the file structure for actions. by zhanyong.wan · 15 years ago
  40. 1afe1c7 Adds the ReturnArg<k>() action (by Tim Hockin); refactors gmock-matchers.h (by Zhanyong Wan). by zhanyong.wan · 15 years ago
  41. 387bdd5 Makes ByRef(x) printable as a reference to x. by zhanyong.wan · 15 years ago
  42. b5937da Adds the Key() matcher, by Marcus Borger. by zhanyong.wan · 15 years ago
  43. 41b9b0b Implements Expectation, ExpectationSet, and After for specifying expectation orders. by zhanyong.wan · 15 years ago
  44. 81476f2 Makes gmock-spec-builders_test.cc and gmock-internal-utils_test.cc work where both ::string and ::std::string are defined. by zhanyong.wan · 15 years ago
  45. 90c90f9 Switches from Boost TR1 tuple to gtest's TR1 tuple. by zhanyong.wan · 15 years ago
  46. 4cd148e Removes the .WithArguments() clause from ON_CALL and EXPECT_CALL. by zhanyong.wan · 15 years ago
  47. 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
  48. 2661c68 Implements the Args<k1, ..., kn>(m) matcher. by zhanyong.wan · 15 years ago
  49. 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
  50. 9413f2f Avoids unnecessary printing of call into to internal buffers; by zhanyong.wan · 15 years ago
  51. 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
  52. c6a4123 Adds more tests for using SetArgumentPointee with protobufs; works around a compiler bug on Symbian that gmock-printers.h triggers; reduces template code bloat in gmock-matchers.h; avoids RTTI when it's disabled. by zhanyong.wan · 15 years ago
  53. 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
  54. e7bb5ed Improves the error message for leaked mocks to include the test name (by Zhanyong Wan). by zhanyong.wan · 15 years ago
  55. bf0d0a4 Turns --gmock_catch_leaked_mocks on by default. by zhanyong.wan · 15 years ago
  56. df35a76 Implements --gmock_catch_leaked_mocks and Mock::AllowLeak. by zhanyong.wan · 15 years ago
  57. 1c8eb1c Adds actions ReturnNew<T>(...) and DeleteArg<k>(), by Jason Hsueh. by zhanyong.wan · 15 years ago
  58. 3fbd2dd Makes gmock compile with gcc -Wall -Wextra -Wno-unused-parameter. by zhanyong.wan · 15 years ago
  59. 68be111 Allows mock methods overloaded on argument number or the const-ness of this object to appear on the same source line. by zhanyong.wan · 16 years ago
  60. 5b5d62f Makes the code compile on Windows CE. by zhanyong.wan · 16 years ago
  61. 93ad355 Fixes gmock-port_test on Windows. by zhanyong.wan · 16 years ago
  62. 6f14769 Allows a mock object to delete itself in an action. By Simon Bowden. by zhanyong.wan · 16 years ago
  63. 652540a Cleans up macro definitions. by zhanyong.wan · 16 years ago
  64. 1bee7b2 Implements Contains(element) matcher. By Gary Morain. by zhanyong.wan · 16 years ago
  65. 7f4c2c0 Adds two actions: SaveArg and SetArgReferee. by zhanyong.wan · 16 years ago
  66. 38ca64d Fixes link errors due to an MS VC bug. By Vlad Losev. by zhanyong.wan · 16 years ago
  67. 4a5330d Implements custom description string for MATCHER*. by zhanyong.wan · 16 years ago
  68. e0d051e Makes sure all internal macros are named GMOCK_*_. No functionality is changed. by zhanyong.wan · 16 years ago
  69. ce198ff Implements the MATCHER* macros. by zhanyong.wan · 16 years ago
  70. 2f0849f Fixes the "ambiguous overload" compiler error when a mock function takes an argument that supports streaming to basic_ostream<C, T>. by zhanyong.wan · 16 years ago
  71. e1cdce5 Implements action Throw(exception). by zhanyong.wan · 16 years ago
  72. c069d7f Improves ACTION* to allow explicit instantiating with reference types. by zhanyong.wan · 16 years ago
  73. 5b95fa7 Improves error messages for undefined return value (by Sverre Sundsdal); improves gmock_doctor. by zhanyong.wan · 16 years ago
  74. 6a896b5 Implements ContainerEq. by zhanyong.wan · 16 years ago
  75. 326aa56 Implements the ACTION* macros. by shiqian · 16 years ago
  76. c97f2f5 Fixes compatibility with gcc 4.3's tuple implementation. by shiqian · 16 years ago
  77. e35fdd9 Initial drop of Google Mock. The files are incomplete and thus may not build correctly yet. by shiqian · 16 years ago