summaryrefslogtreecommitdiffstats
path: root/testing/gmock/CHANGES
diff options
context:
space:
mode:
authornsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-03 20:47:21 +0000
committernsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-03 20:47:21 +0000
commitc836d7a0a05a8e5326494dcbd6c1bc73ad496c20 (patch)
treef9fa326e901385dfbfd19e7d488dc86b9ceca310 /testing/gmock/CHANGES
parentb8913f0d456e385a470e4ec157978eacd8a91a91 (diff)
downloadchromium_src-c836d7a0a05a8e5326494dcbd6c1bc73ad496c20.zip
chromium_src-c836d7a0a05a8e5326494dcbd6c1bc73ad496c20.tar.gz
chromium_src-c836d7a0a05a8e5326494dcbd6c1bc73ad496c20.tar.bz2
Update gmock and gtest.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27953 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'testing/gmock/CHANGES')
-rw-r--r--testing/gmock/CHANGES27
1 files changed, 26 insertions, 1 deletions
diff --git a/testing/gmock/CHANGES b/testing/gmock/CHANGES
index 8b62def..f703ac2 100644
--- a/testing/gmock/CHANGES
+++ b/testing/gmock/CHANGES
@@ -1,3 +1,28 @@
+Changes for 1.4.0 (we skipped 1.2.* and 1.3.* to match the version of
+Google Test):
+
+ * Works in more environments: Symbian and minGW, Visual C++ 7.1.
+ * Lighter weight: comes with our own implementation of TR1 tuple (no
+ more dependency on Boost!).
+ * 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(), Pair(), Args<...>(), AllArgs(), IsNull(),
+ and Contains().
+ * New feature: utility class MockFunction<F>, useful for checkpoints, etc.
+ * 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 and gcc.
+ * Bug fixes and implementation clean-ups.
+
Changes for 1.1.0:
* New feature: ability to use Google Mock with any testing framework.
@@ -7,7 +32,7 @@ Changes for 1.1.0:
* New feature: actions for accessing function arguments and throwing
exceptions.
* Improved the Google Mock doctor script for diagnosing compiler errors.
- * Bug fixes and implementation clean-up.
+ * Bug fixes and implementation clean-ups.
Changes for 1.0.0: