diff options
author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2009-03-19 18:39:41 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2009-03-19 18:39:41 +0000 |
commit | 62417be8f3dd068abefbae3920c7ad5697342cf0 (patch) | |
tree | 03e10bb314363a72c09e2f8068e4959edaeb3f75 /README | |
parent | da579bd6810322854e11162ad1cba23e070a522e (diff) | |
download | googletest-62417be8f3dd068abefbae3920c7ad5697342cf0.tar.gz googletest-62417be8f3dd068abefbae3920c7ad5697342cf0.tar.bz2 googletest-62417be8f3dd068abefbae3920c7ad5697342cf0.zip |
Fixes outdated info in README about compatibility with other testing frameworks.
Diffstat (limited to 'README')
-rw-r--r-- | README | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -36,13 +36,18 @@ License, which is different from Google Mock's license. Requirements ------------ Google Mock is not a testing framework itself. Instead, it needs a -testing framework for writing tests. Currently Google Mock only works -with Google Test (http://code.google.com/p/googletest/), although -eventually we plan to support other C++ testing frameworks. You can -use either the copy of Google Test that comes with Google Mock, or a +testing framework for writing tests. It works with Google Test +(http://code.google.com/p/googletest/) out of the box. You can use +either the copy of Google Test that comes with Google Mock, or a compatible version you already have. This version of Google Mock requires Google Test 1.3.0. +You can also easily configure Google Mock to work with another testing +framework of your choice; although it will still need Google Test as +an internal dependency. Please read +http://code.google.com/p/googlemock/wiki/ForDummies#Using_Google_Mock_with_Any_Testing_Framework +for how to do it. + Google Mock depends on advanced C++ features and thus requires a more modern compiler. The following are needed to use Google Mock: |