zhanyong.wan | 061f1d4 | 2013-04-07 03:16:38 +0000 | [diff] [blame] | 1 | Changes for 1.7.0: |
| 2 | |
zhanyong.wan | f427452 | 2013-04-24 02:49:43 +0000 | [diff] [blame^] | 3 | * All new improvements in Google Test 1.7.0. |
| 4 | * New feature: matchers WhenSorted(), WhenSortedBy(), IsEmpty(), and |
| 5 | SizeIs(). |
| 6 | * Improvement: Google Mock can now be built as a DLL. |
| 7 | * Improvement: when exceptions are enabled, a mock method with no |
| 8 | default action now throws instead crashing the test. |
| 9 | * Improvement: function return types used in MOCK_METHOD*() macros can |
| 10 | now contain unprotected commas. |
| 11 | * Improvement (potentially breaking): EXPECT_THAT() and ASSERT_THAT() |
| 12 | are now more strict in ensuring that the value type and the matcher |
| 13 | type are compatible, catching potential bugs in tests. |
| 14 | * Improvement: Pointee() now works on an optional<T>. |
| 15 | * Improvement: the ElementsAreArray() matcher can now take a vector or |
| 16 | iterator range as input, and makes a copy of its input elements |
| 17 | before the conversion to a Matcher. |
| 18 | * Bug fix: mock object destruction triggerred by another mock object's |
| 19 | destruction no longer hangs. |
| 20 | * Improvement: Google Mock Doctor works better with newer Clang and |
| 21 | GCC now. |
| 22 | * Compatibility fixes. |
| 23 | * Bug/warning fixes. |
zhanyong.wan | 061f1d4 | 2013-04-07 03:16:38 +0000 | [diff] [blame] | 24 | |
zhanyong.wan | 79d82b6 | 2011-02-24 07:31:48 +0000 | [diff] [blame] | 25 | Changes for 1.6.0: |
| 26 | |
| 27 | * Compilation is much faster and uses much less memory, especially |
| 28 | when the constructor and destructor of a mock class are moved out of |
| 29 | the class body. |
| 30 | * New matchers: Pointwise(), Each(). |
| 31 | * New actions: ReturnPointee() and ReturnRefOfCopy(). |
zhanyong.wan | 62a35fb | 2011-02-24 21:59:54 +0000 | [diff] [blame] | 32 | * CMake support. |
zhanyong.wan | 79d82b6 | 2011-02-24 07:31:48 +0000 | [diff] [blame] | 33 | * Project files for Visual Studio 2010. |
| 34 | * AllOf() and AnyOf() can handle up-to 10 arguments now. |
| 35 | * Google Mock doctor understands Clang error messages now. |
| 36 | * SetArgPointee<> now accepts string literals. |
| 37 | * gmock_gen.py handles storage specifier macros and template return |
| 38 | types now. |
| 39 | * Compatibility fixes. |
| 40 | * Bug fixes and implementation clean-ups. |
zhanyong.wan | 8d7c5ad | 2011-04-14 07:49:05 +0000 | [diff] [blame] | 41 | * Potentially incompatible changes: disables the harmful 'make install' |
| 42 | command in autotools. |
zhanyong.wan | 79d82b6 | 2011-02-24 07:31:48 +0000 | [diff] [blame] | 43 | |
| 44 | Potentially breaking changes: |
| 45 | |
| 46 | * The description string for MATCHER*() changes from Python-style |
| 47 | interpolation to an ordinary C++ string expression. |
| 48 | * SetArgumentPointee is deprecated in favor of SetArgPointee. |
| 49 | * Some non-essential project files for Visual Studio 2005 are removed. |
| 50 | |
zhanyong.wan | 5905ba0 | 2010-02-24 17:21:37 +0000 | [diff] [blame] | 51 | Changes for 1.5.0: |
| 52 | |
zhanyong.wan | aa28b17 | 2010-03-26 05:38:55 +0000 | [diff] [blame] | 53 | * New feature: Google Mock can be safely used in multi-threaded tests |
| 54 | on platforms having pthreads. |
| 55 | * New feature: function for printing a value of arbitrary type. |
| 56 | * New feature: function ExplainMatchResult() for easy definition of |
| 57 | composite matchers. |
zhanyong.wan | 5905ba0 | 2010-02-24 17:21:37 +0000 | [diff] [blame] | 58 | * The new matcher API lets user-defined matchers generate custom |
| 59 | explanations more directly and efficiently. |
zhanyong.wan | aa28b17 | 2010-03-26 05:38:55 +0000 | [diff] [blame] | 60 | * Better failure messages all around. |
zhanyong.wan | 5905ba0 | 2010-02-24 17:21:37 +0000 | [diff] [blame] | 61 | * NotNull() and IsNull() now work with smart pointers. |
| 62 | * Field() and Property() now work when the matcher argument is a pointer |
| 63 | passed by reference. |
zhanyong.wan | aa28b17 | 2010-03-26 05:38:55 +0000 | [diff] [blame] | 64 | * Regular expression matchers on all platforms. |
zhanyong.wan | 5905ba0 | 2010-02-24 17:21:37 +0000 | [diff] [blame] | 65 | * Added GCC 4.0 support for Google Mock Doctor. |
| 66 | * Added gmock_all_test.cc for compiling most Google Mock tests |
| 67 | in a single file. |
| 68 | * Significantly cleaned up compiler warnings. |
| 69 | * Bug fixes, better test coverage, and implementation clean-ups. |
| 70 | |
| 71 | Potentially breaking changes: |
| 72 | |
| 73 | * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher() |
| 74 | need to be updated after upgrading to Google Mock 1.5.0; matchers defined |
| 75 | using MATCHER or MATCHER_P* aren't affected. |
| 76 | * Dropped support for 'make install'. |
| 77 | |
zhanyong.wan | 7db42db | 2009-10-01 23:31:41 +0000 | [diff] [blame] | 78 | Changes for 1.4.0 (we skipped 1.2.* and 1.3.* to match the version of |
| 79 | Google Test): |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 80 | |
zhanyong.wan | 7db42db | 2009-10-01 23:31:41 +0000 | [diff] [blame] | 81 | * Works in more environments: Symbian and minGW, Visual C++ 7.1. |
| 82 | * Lighter weight: comes with our own implementation of TR1 tuple (no |
| 83 | more dependency on Boost!). |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 84 | * New feature: --gmock_catch_leaked_mocks for detecting leaked mocks. |
| 85 | * New feature: ACTION_TEMPLATE for defining templatized actions. |
| 86 | * New feature: the .After() clause for specifying expectation order. |
| 87 | * New feature: the .With() clause for for specifying inter-argument |
| 88 | constraints. |
| 89 | * New feature: actions ReturnArg<k>(), ReturnNew<T>(...), and |
| 90 | DeleteArg<k>(). |
zhanyong.wan | 7db42db | 2009-10-01 23:31:41 +0000 | [diff] [blame] | 91 | * New feature: matchers Key(), Pair(), Args<...>(), AllArgs(), IsNull(), |
| 92 | and Contains(). |
| 93 | * New feature: utility class MockFunction<F>, useful for checkpoints, etc. |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 94 | * New feature: functions Value(x, m) and SafeMatcherCast<T>(m). |
| 95 | * New feature: copying a mock object is rejected at compile time. |
| 96 | * New feature: a script for fusing all Google Mock and Google Test |
| 97 | source files for easy deployment. |
| 98 | * Improved the Google Mock doctor to diagnose more diseases. |
| 99 | * Improved the Google Mock generator script. |
zhanyong.wan | 7db42db | 2009-10-01 23:31:41 +0000 | [diff] [blame] | 100 | * Compatibility fixes for Mac OS X and gcc. |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 101 | * Bug fixes and implementation clean-ups. |
| 102 | |
zhanyong.wan | da579bd | 2009-03-17 23:34:45 +0000 | [diff] [blame] | 103 | Changes for 1.1.0: |
| 104 | |
| 105 | * New feature: ability to use Google Mock with any testing framework. |
| 106 | * New feature: macros for easily defining new matchers |
| 107 | * New feature: macros for easily defining new actions. |
| 108 | * New feature: more container matchers. |
| 109 | * New feature: actions for accessing function arguments and throwing |
| 110 | exceptions. |
| 111 | * Improved the Google Mock doctor script for diagnosing compiler errors. |
zhanyong.wan | 5bc7cfe | 2009-09-04 18:10:53 +0000 | [diff] [blame] | 112 | * Bug fixes and implementation clean-ups. |
zhanyong.wan | da579bd | 2009-03-17 23:34:45 +0000 | [diff] [blame] | 113 | |
shiqian | e35fdd9 | 2008-12-10 05:08:54 +0000 | [diff] [blame] | 114 | Changes for 1.0.0: |
| 115 | |
| 116 | * Initial Open Source release of Google Mock |