CHANGES 1.53 KB
Newer Older
zhanyong.wan's avatar
zhanyong.wan committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Changes for 1.2.0 (up to r194):

 * New feature: own implementation of TR1 tuple (no more dependency on
   Boost!).
 * New feature: support for Visual C++ 7.1.
 * New feature: --gmock_catch_leaked_mocks for detecting leaked mocks.
 * New feature: ACTION_TEMPLATE for defining templatized actions.
 * New feature: the .After() clause for specifying expectation order.
 * New feature: the .With() clause for for specifying inter-argument
   constraints.
 * New feature: actions ReturnArg<k>(), ReturnNew<T>(...), and
   DeleteArg<k>().
 * New feature: matchers Key(m), Args<...>(m), AllArgs(m), and
   Contains(m).
 * New feature: functions Value(x, m) and SafeMatcherCast<T>(m).
 * New feature: copying a mock object is rejected at compile time.
 * New feature: a script for fusing all Google Mock and Google Test
   source files for easy deployment.
 * Improved the Google Mock doctor to diagnose more diseases.
 * Improved the Google Mock generator script.
 * Compatibility fixes for Mac OS X, Symbian, and gcc.
 * Bug fixes and implementation clean-ups.

24
25
26
27
28
29
30
31
32
Changes for 1.1.0:

 * New feature: ability to use Google Mock with any testing framework.
 * New feature: macros for easily defining new matchers
 * New feature: macros for easily defining new actions.
 * New feature: more container matchers.
 * New feature: actions for accessing function arguments and throwing
   exceptions.
 * Improved the Google Mock doctor script for diagnosing compiler errors.
zhanyong.wan's avatar
zhanyong.wan committed
33
 * Bug fixes and implementation clean-ups.
34

35
36
37
Changes for 1.0.0:

 * Initial Open Source release of Google Mock