aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
...
* Makes Google Mock compile much faster and use much less memory; reviewed by ↵zhanyong.wan2011-02-232-6/+54
| | | | Nico Weber. This fixes issue 68.
* Improves cross-platform compatibility of gmock output. This fixes issue 135.vladlosev2011-02-111-10/+38
|
* Enables SetArgPointee<>() to accept a string literal; removes a ↵zhanyong.wan2010-12-022-1/+38
| | | | self-assignment warning; teaches gmock doctor to diagnose TTB with Clang; picks up gtest r525.
* Adds action SaveArgPointee.zhanyong.wan2010-10-141-0/+27
|
* Adds SetArgPointee to replace SetArgumentPointee.zhanyong.wan2010-10-054-53/+172
|
* Prints the type of the actual value as part of a match message when appropriate.zhanyong.wan2010-09-271-28/+73
|
* Include gtest and gmock headers as user headers instead of system headers.zhanyong.wan2010-09-1416-52/+52
|
* Publishes GTEST_HAS_STREAM_REDIRECTION (by Vlad Losev); casts char to ↵zhanyong.wan2010-08-313-16/+16
| | | | unsigned char before calling isspace() etc to avoid undefined behavior (by Zhanyong Wan); fixes the VC projects (by Fredrik Roubert).
* Picks up gtest r453.zhanyong.wan2010-08-091-1/+1
|
* Removes unused scons scripts; picks up gtest r446.zhanyong.wan2010-07-212-3/+3
|
* Implements ReturnPointee() and ReturnRefOfCopy().zhanyong.wan2010-07-032-0/+35
|
* Increases the maximum arity of AllOf() and AnyOf() to 10, by Marcus Börger.zhanyong.wan2010-06-091-0/+51
|
* Replaces Python-style interpolation with arbitrary C++ string expression in ↵zhanyong.wan2010-06-082-361/+27
| | | | MATCHER* descriptions.
* Implements Pointwise().zhanyong.wan2010-05-173-47/+172
|
* Renames test script flags.vladlosev2010-05-132-59/+3
|
* Moves the universal printer from gmock to gtest (by Vlad Losev).zhanyong.wan2010-05-105-1552/+7
|
* Fixes tests leaking altered values of GMOCK_FLAG(verbose) (issue 110).vladlosev2010-05-053-15/+25
|
* Adds a synchronization test.vladlosev2010-05-041-2/+16
|
* Adds Each(m) (by Wojtek Moczydlowski); removes scripts/test/Makefile (by ↵zhanyong.wan2010-04-221-7/+95
| | | | Zhanyong Wan); pulls in gtest r424.
* Improves matcher messages across the board.zhanyong.wan2010-03-243-147/+381
|
* Fixes the explanation generated by many composite matchers (by Manuel ↵zhanyong.wan2010-03-163-47/+81
| | | | Klimek); publishes the gmock value printer as testing::PrintToString() (by Zhanyong Wan).
* Adds IsInterested() to MatchResultListener; clarifies the format of matcher ↵zhanyong.wan2010-03-151-8/+45
| | | | description and match result explanation; renames the free function MatchAndExplain() to ExplainMatchResult() to avoid it being hidden inside a MATCHER* definition.
* Adds a free function MatchAndExplain().zhanyong.wan2010-03-051-2/+26
|
* Enables tests depending on stdout capturing (by Vlad Losev).zhanyong.wan2010-02-023-117/+124
|
* BREAKING CHANGE: drops the old matcher API. See ↵zhanyong.wan2010-01-282-37/+38
| | | | http://code.google.com/p/googlemock/wiki/FrequentlyAskedQuestions for details.
* Enables regex matchers on all platforms.zhanyong.wan2010-01-143-26/+18
|
* Allows Field() and Property() to work when the matcher argument is a pointer ↵zhanyong.wan2010-01-131-0/+23
| | | | passed by reference.
* Implements the new matcher API.zhanyong.wan2010-01-082-16/+181
|
* Fixes a slew of compiler warnings and turns on "warning as error" in the ↵zhanyong.wan2009-12-2315-70/+235
| | | | scons build.
* Removes uses of GTEST_HAS_STD_STRING.zhanyong.wan2009-12-162-6/+0
|
* Fixes Cygwin compatibility (by Vlad Losev); Improves Python tests (by Vlad ↵zhanyong.wan2009-12-014-9/+26
| | | | Losev); Fixes ambiguous call to implicit_cast; Uses gtest's SkipPrefix() instead gmock's own (by Vlad Losev).
* Pulls in gtest r344; improves implicit_cast (by Zhanyong Wan); makes the ↵zhanyong.wan2009-11-245-97/+74
| | | | Python tests work on Windows (by Vlad Losev); adds run_tests.py (by Vlad Losev).
* Tests NotNull/IsNull with testing::internal::scoped_ptr.vladlosev2009-11-181-0/+19
|
* Updates IsNull and NotNull matchers to work with smart pointers.vladlosev2009-11-181-0/+37
|
* Enables gmock's implicit_cast to work with source types that have a ↵vladlosev2009-11-181-4/+135
| | | | non-const conversion operator (by Zhanyong Wan).
* Enables gmock's implicit_cast to work with source types thatvladlosev2009-11-181-0/+47
|
* Adds gmock_all_test.cc for compiling most gmock tests in a single file.zhanyong.wan2009-11-121-0/+49
|
* Adds a dummy test to gmock-port.test.cc.zhanyong.wan2009-11-061-1/+5
|
* Enables more verbose output for expectations (by Sverre Sundsdal); Fixes ↵vladlosev2009-10-214-63/+81
| | | | information loss warning when compiled by VC8.0 with /Wp64; Skips two tests on Windows Mobile that don't work there.
* Changes gmock's version to 1.4.0. Also fixes a compiler warning.zhanyong.wan2009-09-301-1/+1
|
* Implements the MockFunction class.zhanyong.wan2009-09-251-0/+44
|
* Makes gmock work on Symbian (both 3rd & 5th editions), original patch ↵zhanyong.wan2009-09-254-25/+60
| | | | contributed by Mika Raento.
* Adds the IsNull() matcher.zhanyong.wan2009-09-242-0/+35
|
* Simplifies gmock code using gtest's OS-indicating macros.zhanyong.wan2009-09-242-11/+11
|
* Removes gmock's dependency on python2.4.zhanyong.wan2009-09-221-1/+1
|
* Picks up gtest r314.zhanyong.wan2009-09-181-1/+1
|
* Disbles two tests that crash on Symbian.zhanyong.wan2009-09-171-3/+13
|
* Simplifies the definition of NativeArray. Works around a VC bug in ↵zhanyong.wan2009-09-163-30/+44
| | | | StrictMock & NiceMock.
* Adds new matcher Pair(). Replaces GMOCK_CHECK_ with GTEST_CHECK_ (by Vlad ↵zhanyong.wan2009-09-162-87/+116
| | | | Losev).
* Removes dead code in gmock-more-actions_test.cc.zhanyong.wan2009-09-121-132/+0
|