blob: 80a01d4af14e11914234a2f038981877753d37e7 [file] [log] [blame]
zhanyong.wan79d82b62011-02-24 07:31:48 +00001Changes for 1.6.0:
2
3* Compilation is much faster and uses much less memory, especially
4 when the constructor and destructor of a mock class are moved out of
5 the class body.
6* New matchers: Pointwise(), Each().
7* New actions: ReturnPointee() and ReturnRefOfCopy().
8* Project files for Visual Studio 2010.
9* AllOf() and AnyOf() can handle up-to 10 arguments now.
10* Google Mock doctor understands Clang error messages now.
11* SetArgPointee<> now accepts string literals.
12* gmock_gen.py handles storage specifier macros and template return
13 types now.
14* Compatibility fixes.
15* Bug fixes and implementation clean-ups.
16
17Potentially breaking changes:
18
19* The description string for MATCHER*() changes from Python-style
20 interpolation to an ordinary C++ string expression.
21* SetArgumentPointee is deprecated in favor of SetArgPointee.
22* Some non-essential project files for Visual Studio 2005 are removed.
23
zhanyong.wan5905ba02010-02-24 17:21:37 +000024Changes for 1.5.0:
25
zhanyong.wanaa28b172010-03-26 05:38:55 +000026 * New feature: Google Mock can be safely used in multi-threaded tests
27 on platforms having pthreads.
28 * New feature: function for printing a value of arbitrary type.
29 * New feature: function ExplainMatchResult() for easy definition of
30 composite matchers.
zhanyong.wan5905ba02010-02-24 17:21:37 +000031 * The new matcher API lets user-defined matchers generate custom
32 explanations more directly and efficiently.
zhanyong.wanaa28b172010-03-26 05:38:55 +000033 * Better failure messages all around.
zhanyong.wan5905ba02010-02-24 17:21:37 +000034 * NotNull() and IsNull() now work with smart pointers.
35 * Field() and Property() now work when the matcher argument is a pointer
36 passed by reference.
zhanyong.wanaa28b172010-03-26 05:38:55 +000037 * Regular expression matchers on all platforms.
zhanyong.wan5905ba02010-02-24 17:21:37 +000038 * Added GCC 4.0 support for Google Mock Doctor.
39 * Added gmock_all_test.cc for compiling most Google Mock tests
40 in a single file.
41 * Significantly cleaned up compiler warnings.
42 * Bug fixes, better test coverage, and implementation clean-ups.
43
44 Potentially breaking changes:
45
46 * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher()
47 need to be updated after upgrading to Google Mock 1.5.0; matchers defined
48 using MATCHER or MATCHER_P* aren't affected.
49 * Dropped support for 'make install'.
50
zhanyong.wan7db42db2009-10-01 23:31:41 +000051Changes for 1.4.0 (we skipped 1.2.* and 1.3.* to match the version of
52Google Test):
zhanyong.wan5bc7cfe2009-09-04 18:10:53 +000053
zhanyong.wan7db42db2009-10-01 23:31:41 +000054 * Works in more environments: Symbian and minGW, Visual C++ 7.1.
55 * Lighter weight: comes with our own implementation of TR1 tuple (no
56 more dependency on Boost!).
zhanyong.wan5bc7cfe2009-09-04 18:10:53 +000057 * New feature: --gmock_catch_leaked_mocks for detecting leaked mocks.
58 * New feature: ACTION_TEMPLATE for defining templatized actions.
59 * New feature: the .After() clause for specifying expectation order.
60 * New feature: the .With() clause for for specifying inter-argument
61 constraints.
62 * New feature: actions ReturnArg<k>(), ReturnNew<T>(...), and
63 DeleteArg<k>().
zhanyong.wan7db42db2009-10-01 23:31:41 +000064 * New feature: matchers Key(), Pair(), Args<...>(), AllArgs(), IsNull(),
65 and Contains().
66 * New feature: utility class MockFunction<F>, useful for checkpoints, etc.
zhanyong.wan5bc7cfe2009-09-04 18:10:53 +000067 * New feature: functions Value(x, m) and SafeMatcherCast<T>(m).
68 * New feature: copying a mock object is rejected at compile time.
69 * New feature: a script for fusing all Google Mock and Google Test
70 source files for easy deployment.
71 * Improved the Google Mock doctor to diagnose more diseases.
72 * Improved the Google Mock generator script.
zhanyong.wan7db42db2009-10-01 23:31:41 +000073 * Compatibility fixes for Mac OS X and gcc.
zhanyong.wan5bc7cfe2009-09-04 18:10:53 +000074 * Bug fixes and implementation clean-ups.
75
zhanyong.wanda579bd2009-03-17 23:34:45 +000076Changes for 1.1.0:
77
78 * New feature: ability to use Google Mock with any testing framework.
79 * New feature: macros for easily defining new matchers
80 * New feature: macros for easily defining new actions.
81 * New feature: more container matchers.
82 * New feature: actions for accessing function arguments and throwing
83 exceptions.
84 * Improved the Google Mock doctor script for diagnosing compiler errors.
zhanyong.wan5bc7cfe2009-09-04 18:10:53 +000085 * Bug fixes and implementation clean-ups.
zhanyong.wanda579bd2009-03-17 23:34:45 +000086
shiqiane35fdd92008-12-10 05:08:54 +000087Changes for 1.0.0:
88
89 * Initial Open Source release of Google Mock