OLD | NEW |
1 Changes for 1.5.0: | 1 Changes for 1.5.0: |
2 | 2 |
3 * Support for use in multi-threaded tests on platforms having pthreads | 3 * New feature: Google Mock can be safely used in multi-threaded tests |
4 (by virtue of the Google Test thread change) | 4 on platforms having pthreads. |
| 5 * New feature: function for printing a value of arbitrary type. |
| 6 * New feature: function ExplainMatchResult() for easy definition of |
| 7 composite matchers. |
5 * The new matcher API lets user-defined matchers generate custom | 8 * The new matcher API lets user-defined matchers generate custom |
6 explanations more directly and efficiently. | 9 explanations more directly and efficiently. |
7 * Better expectation failure messages. | 10 * Better failure messages all around. |
8 * NotNull() and IsNull() now work with smart pointers. | 11 * NotNull() and IsNull() now work with smart pointers. |
9 * Field() and Property() now work when the matcher argument is a pointer | 12 * Field() and Property() now work when the matcher argument is a pointer |
10 passed by reference. | 13 passed by reference. |
11 * Regular expression matching on all platforms. | 14 * Regular expression matchers on all platforms. |
12 * Added GCC 4.0 support for Google Mock Doctor. | 15 * Added GCC 4.0 support for Google Mock Doctor. |
13 * Added gmock_all_test.cc for compiling most Google Mock tests | 16 * Added gmock_all_test.cc for compiling most Google Mock tests |
14 in a single file. | 17 in a single file. |
15 * Significantly cleaned up compiler warnings. | 18 * Significantly cleaned up compiler warnings. |
16 * Bug fixes, better test coverage, and implementation clean-ups. | 19 * Bug fixes, better test coverage, and implementation clean-ups. |
17 | 20 |
18 Potentially breaking changes: | 21 Potentially breaking changes: |
19 | 22 |
20 * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher() | 23 * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher() |
21 need to be updated after upgrading to Google Mock 1.5.0; matchers defined | 24 need to be updated after upgrading to Google Mock 1.5.0; matchers defined |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 * New feature: macros for easily defining new actions. | 57 * New feature: macros for easily defining new actions. |
55 * New feature: more container matchers. | 58 * New feature: more container matchers. |
56 * New feature: actions for accessing function arguments and throwing | 59 * New feature: actions for accessing function arguments and throwing |
57 exceptions. | 60 exceptions. |
58 * Improved the Google Mock doctor script for diagnosing compiler errors. | 61 * Improved the Google Mock doctor script for diagnosing compiler errors. |
59 * Bug fixes and implementation clean-ups. | 62 * Bug fixes and implementation clean-ups. |
60 | 63 |
61 Changes for 1.0.0: | 64 Changes for 1.0.0: |
62 | 65 |
63 * Initial Open Source release of Google Mock | 66 * Initial Open Source release of Google Mock |
OLD | NEW |