zhanyong.wan | 7db42db | 2009-10-01 23:31:41 +0000 | [diff] [blame^] | 1 | Changes for 1.4.0 (we skipped 1.2.* and 1.3.* to match the version of |
| 2 | Google Test): |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 3 | |
zhanyong.wan | 7db42db | 2009-10-01 23:31:41 +0000 | [diff] [blame^] | 4 | * Works in more environments: Symbian and minGW, Visual C++ 7.1. |
| 5 | * Lighter weight: comes with our own implementation of TR1 tuple (no |
| 6 | more dependency on Boost!). |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 7 | * New feature: --gmock_catch_leaked_mocks for detecting leaked mocks. |
| 8 | * New feature: ACTION_TEMPLATE for defining templatized actions. |
| 9 | * New feature: the .After() clause for specifying expectation order. |
| 10 | * New feature: the .With() clause for for specifying inter-argument |
| 11 | constraints. |
| 12 | * New feature: actions ReturnArg<k>(), ReturnNew<T>(...), and |
| 13 | DeleteArg<k>(). |
zhanyong.wan | 7db42db | 2009-10-01 23:31:41 +0000 | [diff] [blame^] | 14 | * New feature: matchers Key(), Pair(), Args<...>(), AllArgs(), IsNull(), |
| 15 | and Contains(). |
| 16 | * New feature: utility class MockFunction<F>, useful for checkpoints, etc. |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 17 | * New feature: functions Value(x, m) and SafeMatcherCast<T>(m). |
| 18 | * New feature: copying a mock object is rejected at compile time. |
| 19 | * New feature: a script for fusing all Google Mock and Google Test |
| 20 | source files for easy deployment. |
| 21 | * Improved the Google Mock doctor to diagnose more diseases. |
| 22 | * Improved the Google Mock generator script. |
zhanyong.wan | 7db42db | 2009-10-01 23:31:41 +0000 | [diff] [blame^] | 23 | * Compatibility fixes for Mac OS X and gcc. |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 24 | * Bug fixes and implementation clean-ups. |
| 25 | |
zhanyong.wan | da579bd | 2009-03-17 23:34:45 +0000 | [diff] [blame] | 26 | Changes for 1.1.0: |
| 27 | |
| 28 | * New feature: ability to use Google Mock with any testing framework. |
| 29 | * New feature: macros for easily defining new matchers |
| 30 | * New feature: macros for easily defining new actions. |
| 31 | * New feature: more container matchers. |
| 32 | * New feature: actions for accessing function arguments and throwing |
| 33 | exceptions. |
| 34 | * Improved the Google Mock doctor script for diagnosing compiler errors. |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 35 | * Bug fixes and implementation clean-ups. |
zhanyong.wan | da579bd | 2009-03-17 23:34:45 +0000 | [diff] [blame] | 36 | |
shiqian | e35fdd9 | 2008-12-10 05:08:54 +0000 | [diff] [blame] | 37 | Changes for 1.0.0: |
| 38 | |
| 39 | * Initial Open Source release of Google Mock |