-
-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,393 changed files
with
177,311 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# This file is used to ignore files which are generated | ||
# ---------------------------------------------------------------------------- | ||
|
||
*~ | ||
*.autosave | ||
*.a | ||
*.core | ||
*.moc | ||
*.o | ||
*.obj | ||
*.orig | ||
*.rej | ||
*.so | ||
*.so.* | ||
*_pch.h.cpp | ||
*_resource.rc | ||
*.qm | ||
.#* | ||
*.*# | ||
core | ||
!core/ | ||
tags | ||
.DS_Store | ||
.directory | ||
*.debug | ||
Makefile* | ||
*.prl | ||
*.app | ||
moc_*.cpp | ||
ui_*.h | ||
qrc_*.cpp | ||
Thumbs.db | ||
*.res | ||
*.rc | ||
/.qmake.cache | ||
/.qmake.stash | ||
|
||
# qtcreator generated files | ||
*.pro.user* | ||
|
||
# xemacs temporary files | ||
*.flc | ||
|
||
# Vim temporary files | ||
.*.swp | ||
|
||
# Visual Studio generated files | ||
*.ib_pdb_index | ||
*.idb | ||
*.ilk | ||
*.pdb | ||
*.sln | ||
*.suo | ||
*.vcproj | ||
*vcproj.*.*.user | ||
*.ncb | ||
*.sdf | ||
*.opensdf | ||
*.vcxproj | ||
*vcxproj.* | ||
|
||
# MinGW generated files | ||
*.Debug | ||
*.Release | ||
|
||
# Python byte code | ||
*.pyc | ||
|
||
# Binaries | ||
# -------- | ||
*.dll | ||
*.exe | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
Changes for 1.5.0: | ||
|
||
* New feature: Google Mock can be safely used in multi-threaded tests | ||
on platforms having pthreads. | ||
* New feature: function for printing a value of arbitrary type. | ||
* New feature: function ExplainMatchResult() for easy definition of | ||
composite matchers. | ||
* The new matcher API lets user-defined matchers generate custom | ||
explanations more directly and efficiently. | ||
* Better failure messages all around. | ||
* NotNull() and IsNull() now work with smart pointers. | ||
* Field() and Property() now work when the matcher argument is a pointer | ||
passed by reference. | ||
* Regular expression matchers on all platforms. | ||
* Added GCC 4.0 support for Google Mock Doctor. | ||
* Added gmock_all_test.cc for compiling most Google Mock tests | ||
in a single file. | ||
* Significantly cleaned up compiler warnings. | ||
* Bug fixes, better test coverage, and implementation clean-ups. | ||
|
||
Potentially breaking changes: | ||
|
||
* Custom matchers defined using MatcherInterface or MakePolymorphicMatcher() | ||
need to be updated after upgrading to Google Mock 1.5.0; matchers defined | ||
using MATCHER or MATCHER_P* aren't affected. | ||
* Dropped support for 'make install'. | ||
|
||
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. | ||
* 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. | ||
* Bug fixes and implementation clean-ups. | ||
|
||
Changes for 1.0.0: | ||
|
||
* Initial Open Source release of Google Mock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# This file contains a list of people who've made non-trivial | ||
# contribution to the Google C++ Mocking Framework project. People | ||
# who commit code to the project are encouraged to add their names | ||
# here. Please keep the list sorted by first names. | ||
|
||
Benoit Sigoure <[email protected]> | ||
Bogdan Piloca <[email protected]> | ||
Chandler Carruth <[email protected]> | ||
Dave MacLachlan <[email protected]> | ||
David Anderson <[email protected]> | ||
Dean Sturtevant | ||
Gene Volovich <[email protected]> | ||
Hal Burch <[email protected]> | ||
Jeffrey Yasskin <[email protected]> | ||
Jim Keller <[email protected]> | ||
Joe Walnes <[email protected]> | ||
Jon Wray <[email protected]> | ||
Keir Mierle <[email protected]> | ||
Keith Ray <[email protected]> | ||
Kostya Serebryany <[email protected]> | ||
Lev Makhlis | ||
Manuel Klimek <[email protected]> | ||
Mario Tanev <[email protected]> | ||
Mark Paskin | ||
Markus Heule <[email protected]> | ||
Matthew Simmons <[email protected]> | ||
Mike Bland <[email protected]> | ||
Neal Norwitz <[email protected]> | ||
Nermin Ozkiranartli <[email protected]> | ||
Owen Carlsen <[email protected]> | ||
Paneendra Ba <[email protected]> | ||
Paul Menage <[email protected]> | ||
Piotr Kaminski <[email protected]> | ||
Russ Rufer <[email protected]> | ||
Sverre Sundsdal <[email protected]> | ||
Takeshi Yoshino <[email protected]> | ||
Vadim Berman <[email protected]> | ||
Vlad Losev <[email protected]> | ||
Wolfgang Klier <[email protected]> | ||
Zhanyong Wan <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Copyright 2008, Google Inc. | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above | ||
copyright notice, this list of conditions and the following disclaimer | ||
in the documentation and/or other materials provided with the | ||
distribution. | ||
* Neither the name of Google Inc. nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Oops, something went wrong.