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