1. 8834a3b adds more files to gmock's distro by zhanyong.wan · 11 years ago
  2. 28065f9 fixes a typo by zhanyong.wan · 11 years ago
  3. 93bcd54 adds gmock-more-matchers.h to the distro by zhanyong.wan · 11 years ago
  4. 5fad84f pulls in gtest r661 by zhanyong.wan · 11 years ago
  5. 1991cbe 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
  6. a7b67e0 Makes UnorderedElementsAre*() work with containers that don't have size() or empty(). by zhanyong.wan · 11 years ago
  7. fada3ac Adds matchers UnorderedElementsAre[Array]() (by Billy Donahue); pulls in by zhanyong.wan · 11 years ago
  8. 23f9b0f Fixes uses of pair to std::pair; pulls in gtest r655. by zhanyong.wan · 11 years ago
  9. 9b17034 New floating-point matchers: DoubleNear() and friends; by zhanyong.wan · 11 years ago
  10. 68c2e01 Makes EXPECT_THAT typesafe; updates CHANGES for 1.7.0; pulls in gtest r653 by zhanyong.wan · 11 years ago
  11. 9115bf5 Updates version number to 1.7.0 by zhanyong.wan · 11 years ago
  12. e4717cf Fixes some compatibility issues with STLport. by zhanyong.wan · 11 years ago
  13. ddc1da6 Makes WhenSorted() support associative containers (by billydonahue@google.com). by zhanyong.wan · 11 years ago
  14. 8baf328 Adds special support for matching StringPiece. Pulls in gtest r646. by zhanyong.wan · 11 years ago
  15. c96f75a Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode. by zhanyong.wan · 11 years ago
  16. b292fdf Adds a cmake target for gmock_ex_test; also fixes name shadowing warnings. by zhanyong.wan · 11 years ago
  17. 522cbb1 Improves the tests for nice, naggy, and strict mocks. by zhanyong.wan · 11 years ago
  18. 26c778f Allows the return type of a mock method to contain unprotected commas. by zhanyong.wan · 11 years ago
  19. e6c09e8 Removes unused variables and functions. by zhanyong.wan · 11 years ago
  20. 5027aba Implements NaggyMock. by zhanyong.wan · 11 years ago
  21. b47a72a Implements matcher SizeIs(). by zhanyong.wan · 11 years ago
  22. be5d386 Clarifies how to implement MatcherInterface. by zhanyong.wan · 11 years ago
  23. 85b4b0a Implements matcher IsEmpty(); also pulls in gtest r643. by zhanyong.wan · 11 years ago
  24. 09d7cd4 Makes googlemock throw a runtime_error instead of abort when a mock by zhanyong.wan · 11 years ago
  25. 60d5da3 Pulls in gtest r639, which fixes dangling reference in make/cmake files. by zhanyong.wan · 11 years ago
  26. cef7566 Adds -pthread and switches -I to -isystem in build instructions; by zhanyong.wan · 11 years ago
  27. 919cb49 Adds the LICENSE file to the distribution. by vladlosev · 11 years ago
  28. 6b1759c Unfortunately, the svn repo is a bit out of date. This commit contains 8 by jgm@google.com · 11 years ago
  29. 917eb00 Makes gmock's Pointee() work for optional<T> (by Jeffrey Yasskin). by vladlosev · 12 years ago
  30. c943d06 Pulls in gtest r615. by zhanyong.wan · 12 years ago
  31. 9bc5e4a Reduced template instantiation depth for the AllOf and AnyOf matchers. Also some formatting changes. by jgm@google.com · 12 years ago
  32. 6260125 Fixes a lock reentrancy when destroying a mock causes destruction of another mock (issue 79) (by Aaron Jacobs). by vladlosev · 13 years ago
  33. 62d067a Expressed the thread-safety annotations in code, replacing the existing comment-based system (by Aaron Jacobs). by vladlosev · 13 years ago
  34. 5cfa710 Fixed Google Mock Doctor Clang regexes to work on both k8 and piii (by Greg Miller). by vladlosev · 13 years ago
  35. 3733f7a 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 · 13 years ago
  36. 0f1f241 Implements matchers WhenSorted() and WhenSortedBy(); pulls in gtest r595. by zhanyong.wan · 13 years ago
  37. 7bd984a Renames the license files. by vladlosev · 13 years ago
  38. 6f00403 More Clang support improvements in Google Mock Doctor. by vladlosev · 13 years ago
  39. 01fc6d6 Improves support for Clang in Google Mock Doctor. by vladlosev · 13 years ago
  40. 73471a6 Fixes issue 139 and issue 140. by vladlosev · 13 years ago
  41. dfc46e7 Adds a DLL-related section to Google Mock's README. by vladlosev · 13 years ago
  42. bb4c52a Adds support for building Google Mock as a shared library (DLL). by vladlosev · 13 years ago
  43. f4b96ac A test to verify correcteness of Google Mock on multiple threads. by vladlosev · 13 years ago
  44. 7283dde Makes generation of fused sources contingent on availability of Python and pulls in gtest r580. by vladlosev · 13 years ago
  45. c8c04e9 pulls in gtest r572 by zhanyong.wan · 13 years ago
  46. e655032 simplifies TrulyMatcher and adds a test for it by zhanyong.wan · 13 years ago
  47. 85a22c8 Documents latest changes and pulls in gtest r570 by zhanyong.wan · 13 years ago
  48. c591895 Updates conditional directives to be consistent with the rest of the project. by vladlosev · 13 years ago
  49. 913377d Corrects condition to compile out MSVC's pragmas. This fixes the build on MinGW. by vladlosev · 13 years ago
  50. e34bc1a Pulls in gtest r569 by zhanyong.wan · 13 years ago
  51. 34d9165 Removes commas from last items in enums (a C++ standard compliance fix). by vladlosev · 13 years ago
  52. ad13ffa disables 'make install' by zhanyong.wan · 13 years ago
  53. 21c4624 fixes link errors in 'make check' by zhanyong.wan · 13 years ago
  54. 35402b8 pulls in gtest r562 by zhanyong.wan · 13 years ago
  55. 1de8831 Changes diagnostic output of the question mark from '\?' to '?'. by vladlosev · 13 years ago
  56. 2db7b50 Fixes Google Mock Doctor affected by the latest tweaks to Clang. by vladlosev · 13 years ago
  57. 273d21f Pulls in gtest r555. by zhanyong.wan · 13 years ago
  58. a6fb863 Prevents ADL in AllOf() and AnyOf() (by Manuel Klimek). by zhanyong.wan · 13 years ago
  59. 17e1c4b Pulls in gtest r554. by zhanyong.wan · 13 years ago
  60. 35d98eb Disables SetArgPointee("string literal") for GCC 4.0- and Symbian, and by zhanyong.wan · 13 years ago
  61. dcc87ad Adds CMake scripts to gmock's release package. by zhanyong.wan · 13 years ago
  62. a65aeed Pulls in gtest r550. by zhanyong.wan · 13 years ago
  63. e6a0248 Pulls in gtest r549. by zhanyong.wan · 13 years ago
  64. a860a70 Deletes the empty scons directory. by zhanyong.wan · 13 years ago
  65. 00ba3fe Pulls in gtest r548. by zhanyong.wan · 13 years ago
  66. 633dd01 Changes gmock's version to 1.6.0 and adds release notes. by zhanyong.wan · 13 years ago
  67. c186fcc Indents preprocessor directives. by zhanyong.wan · 13 years ago
  68. a7a9dce Pulls in gtest r544. by zhanyong.wan · 13 years ago
  69. 580f3c8 Makes Google Mock compile much faster and use much less memory; reviewed by Nico Weber. This fixes issue 68. by zhanyong.wan · 13 years ago
  70. dee0830 Adds project files for MSVC 2010 (by Fredrik Roubert). by vladlosev · 13 years ago
  71. afc487b Improves cross-platform compatibility of gmock output. This fixes issue 135. by vladlosev · 13 years ago
  72. b3a1093 Pulls in gtest r539. by zhanyong.wan · 13 years ago
  73. 8672c19 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 · 13 years ago
  74. 47935cf 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 · 13 years ago
  75. 155932e Adds comment clarifying the use of default-constructed matchers. by vladlosev · 13 years ago
  76. d567f69 Adds action SaveArgPointee. by zhanyong.wan · 14 years ago
  77. 6c1df9c Pulls in gtest r492. by zhanyong.wan · 14 years ago
  78. a194c61 Fixes an include order problem in CMakeLists.txt; pulls in gtest r489. by zhanyong.wan · 14 years ago
  79. d4f852e Adds more tests for the gmock generator. by zhanyong.wan · 14 years ago
  80. 4ddaa48 Enables gmock_gen to handle return types that are templates (based on Pride Haveit's patch); also fixes deprecation warnings when using gmock_gen with python 2.6 (by Aaron Jacobs). by zhanyong.wan · 14 years ago
  81. 346ee88 Adds SetArgPointee to replace SetArgumentPointee. by zhanyong.wan · 14 years ago
  82. 8ee5a60 Factors out email address in Google Mock Doctor messages. by vladlosev · 14 years ago
  83. d330d37 Fixes issue 105. by zhanyong.wan · 14 years ago
  84. 522f6c4 Prints the type of the actual value as part of a match message when appropriate. by zhanyong.wan · 14 years ago
  85. a50d909 Updates the gMock Doctor script to understand Clang error messages. by vladlosev · 14 years ago
  86. b3e82fe Pulls in gtest r484. by zhanyong.wan · 14 years ago
  87. c6b48be Include gtest and gmock headers as user headers instead of system headers. by zhanyong.wan · 14 years ago
  88. fa7b0ac Simplifies the VC projects by using gmock-all.cc and by zhanyong.wan · 14 years ago
  89. f63e18b pulls in gtest r481. by zhanyong.wan · 14 years ago
  90. 342852c Publishes GTEST_HAS_STREAM_REDIRECTION (by Vlad Losev); casts char to unsigned char before calling isspace() etc to avoid undefined behavior (by Zhanyong Wan); fixes the VC projects (by Fredrik Roubert). by zhanyong.wan · 14 years ago
  91. bf64b09 Removes some gmock internal macros; sorts the file lists in Makefile.am; picks up gtest r454. by zhanyong.wan · 14 years ago
  92. 7100326 Picks up gtest r453. by zhanyong.wan · 14 years ago
  93. 1a98db0 Removes unused scons scripts; picks up gtest r446. by zhanyong.wan · 14 years ago
  94. 12efc66 Implements ReturnPointee() and ReturnRefOfCopy(). by zhanyong.wan · 14 years ago
  95. 235accb Increases the maximum arity of AllOf() and AnyOf() to 10, by Marcus Börger. by zhanyong.wan · 14 years ago
  96. e5ae213 Replaces Python-style interpolation with arbitrary C++ string expression in MATCHER* descriptions. by zhanyong.wan · 14 years ago
  97. 1474276 Pulls r435 of gtest. This brings in the gtest_force_shared_crt option in CMake. by vladlosev · 14 years ago
  98. 9d8e171 Fixes build failure on Windows/CMake (issue 111). by vladlosev · 14 years ago
  99. 9c711b2 Implements Pointwise(). by zhanyong.wan · 14 years ago
  100. 3592953 Adds CMake build script. by vladlosev · 14 years ago