OLD | NEW |
| 1 Changes for 1.5.0: |
| 2 |
| 3 * Support for use in multi-threaded tests on platforms having pthreads |
| 4 (by virtue of the Google Test thread change) |
| 5 * The new matcher API lets user-defined matchers generate custom |
| 6 explanations more directly and efficiently. |
| 7 * Better expectation failure messages. |
| 8 * NotNull() and IsNull() now work with smart pointers. |
| 9 * Field() and Property() now work when the matcher argument is a pointer |
| 10 passed by reference. |
| 11 * Regular expression matching on all platforms. |
| 12 * Added GCC 4.0 support for Google Mock Doctor. |
| 13 * Added gmock_all_test.cc for compiling most Google Mock tests |
| 14 in a single file. |
| 15 * Significantly cleaned up compiler warnings. |
| 16 * Bug fixes, better test coverage, and implementation clean-ups. |
| 17 |
| 18 Potentially breaking changes: |
| 19 |
| 20 * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher() |
| 21 need to be updated after upgrading to Google Mock 1.5.0; matchers defined |
| 22 using MATCHER or MATCHER_P* aren't affected. |
| 23 * Dropped support for 'make install'. |
| 24 |
1 Changes for 1.4.0 (we skipped 1.2.* and 1.3.* to match the version of | 25 Changes for 1.4.0 (we skipped 1.2.* and 1.3.* to match the version of |
2 Google Test): | 26 Google Test): |
3 | 27 |
4 * Works in more environments: Symbian and minGW, Visual C++ 7.1. | 28 * Works in more environments: Symbian and minGW, Visual C++ 7.1. |
5 * Lighter weight: comes with our own implementation of TR1 tuple (no | 29 * Lighter weight: comes with our own implementation of TR1 tuple (no |
6 more dependency on Boost!). | 30 more dependency on Boost!). |
7 * New feature: --gmock_catch_leaked_mocks for detecting leaked mocks. | 31 * New feature: --gmock_catch_leaked_mocks for detecting leaked mocks. |
8 * New feature: ACTION_TEMPLATE for defining templatized actions. | 32 * New feature: ACTION_TEMPLATE for defining templatized actions. |
9 * New feature: the .After() clause for specifying expectation order. | 33 * New feature: the .After() clause for specifying expectation order. |
10 * New feature: the .With() clause for for specifying inter-argument | 34 * New feature: the .With() clause for for specifying inter-argument |
(...skipping 19 matching lines...) Expand all Loading... |
30 * New feature: macros for easily defining new actions. | 54 * New feature: macros for easily defining new actions. |
31 * New feature: more container matchers. | 55 * New feature: more container matchers. |
32 * New feature: actions for accessing function arguments and throwing | 56 * New feature: actions for accessing function arguments and throwing |
33 exceptions. | 57 exceptions. |
34 * Improved the Google Mock doctor script for diagnosing compiler errors. | 58 * Improved the Google Mock doctor script for diagnosing compiler errors. |
35 * Bug fixes and implementation clean-ups. | 59 * Bug fixes and implementation clean-ups. |
36 | 60 |
37 Changes for 1.0.0: | 61 Changes for 1.0.0: |
38 | 62 |
39 * Initial Open Source release of Google Mock | 63 * Initial Open Source release of Google Mock |
OLD | NEW |