aboutsummaryrefslogtreecommitdiffstats
path: root/include/gmock/gmock-matchers.h
Commit message (Expand)AuthorAgeFilesLines
* Distinguish between C++11 language and library support for std::function, std...kosak2014-11-171-1/+1
* Defines the UnorderedPointwise(m, container) matcher, which is like Pointwise...kosak2014-07-281-1/+144
* Allows {Unordered,}ElementsAreArray() to accept any STL-style container as th...kosak2014-07-281-10/+11
* Push several shanges:billydonahue2014-05-191-0/+91
* Export tuple and friends in the ::testing namespace.kosak2014-04-021-17/+11
* Introduce a BeginEndDistanceIs matcher for containers such as std::forward_listkosak2014-03-121-0/+72
* Distinguish between C++11 language and library support for <initializer_list>.kosak2013-12-041-4/+4
* Don't copy the argument in SafeMatcherCast because it's not safe.kosak2013-12-031-5/+5
* Makes some container matchers accept initializer lists in C++11 mode and work...zhanyong.wan2013-08-081-53/+102
* Makes UnorderedElementsAre*() work with containers that don't have size() or ...zhanyong.wan2013-07-301-7/+7
* Adds matchers UnorderedElementsAre[Array]() (by Billy Donahue); pulls inzhanyong.wan2013-07-281-39/+433
* Fixes uses of pair to std::pair; pulls in gtest r655.zhanyong.wan2013-06-201-3/+3
* New floating-point matchers: DoubleNear() and friends;zhanyong.wan2013-06-181-16/+194
* Makes EXPECT_THAT typesafe; updates CHANGES for 1.7.0; pulls in gtest r653zhanyong.wan2013-04-241-2/+4
* Makes WhenSorted() support associative containers (by billydonahue@google.com).zhanyong.wan2013-03-271-1/+4
* Adds special support for matching StringPiece. Pulls in gtest r646.zhanyong.wan2013-03-251-0/+45
* Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic m...zhanyong.wan2013-03-081-1/+1
* Implements matcher SizeIs().zhanyong.wan2013-03-011-0/+64
* Clarifies how to implement MatcherInterface.zhanyong.wan2013-03-011-4/+21
* Unfortunately, the svn repo is a bit out of date. This commit contains 8jgm2012-11-151-62/+89
* Reduced template instantiation depth for the AllOf and AnyOf matchers. Also s...jgm2012-04-101-72/+113
* Implements matchers WhenSorted() and WhenSortedBy(); pulls in gtest r595.zhanyong.wan2011-09-161-0/+99
* Adds support for building Google Mock as a shared library (DLL).vladlosev2011-05-201-4/+5
* simplifies TrulyMatcher and adds a test for itzhanyong.wan2011-04-141-9/+9
* Updates conditional directives to be consistent with the rest of the project.vladlosev2011-04-141-2/+2
* Corrects condition to compile out MSVC's pragmas. This fixes the build on MinGW.vladlosev2011-04-131-4/+4
* Indents preprocessor directives.zhanyong.wan2011-02-241-3/+3
* Adds comment clarifying the use of default-constructed matchers.vladlosev2010-11-171-2/+3
* Prints the type of the actual value as part of a match message when appropriate.zhanyong.wan2010-09-271-0/+15
* Include gtest and gmock headers as user headers instead of system headers.zhanyong.wan2010-09-141-3/+3
* Increases the maximum arity of AllOf() and AnyOf() to 10, by Marcus Börger.zhanyong.wan2010-06-091-76/+0
* Replaces Python-style interpolation with arbitrary C++ string expression in M...zhanyong.wan2010-06-081-35/+7
* Implements Pointwise().zhanyong.wan2010-05-171-25/+159
* Renames test script flags.vladlosev2010-05-131-14/+13
* Moves the universal printer from gmock to gtest (by Vlad Losev).zhanyong.wan2010-05-101-25/+24
* Adds Each(m) (by Wojtek Moczydlowski); removes scripts/test/Makefile (by Zhan...zhanyong.wan2010-04-221-21/+123
* Improves matcher messages across the board.zhanyong.wan2010-03-241-87/+84
* Fixes the explanation generated by many composite matchers (by Manuel Klimek)...zhanyong.wan2010-03-161-62/+90
* Adds IsInterested() to MatchResultListener; clarifies the format of matcher d...zhanyong.wan2010-03-151-3/+16
* Adds a free function MatchAndExplain().zhanyong.wan2010-03-051-0/+8
* BREAKING CHANGE: drops the old matcher API. See http://code.google.com/p/goo...zhanyong.wan2010-01-281-204/+76
* Enables regex matchers on all platforms.zhanyong.wan2010-01-141-8/+0
* Allows Field() and Property() to work when the matcher argument is a pointer ...zhanyong.wan2010-01-131-3/+6
* Converts more matchers to the new API; fixes MatchAndExplain() for polymorphi...zhanyong.wan2010-01-121-46/+93
* Implements the new matcher API.zhanyong.wan2010-01-081-322/+382
* Fixes a slew of compiler warnings and turns on "warning as error" in the scon...zhanyong.wan2009-12-231-5/+106
* Updates IsNull and NotNull matchers to work with smart pointers.vladlosev2009-11-181-6/+6
* Makes gmock work on Symbian (both 3rd & 5th editions), original patch contrib...zhanyong.wan2009-09-251-38/+50
* Adds the IsNull() matcher.zhanyong.wan2009-09-241-0/+18
* Adds new matcher Pair(). Replaces GMOCK_CHECK_ with GTEST_CHECK_ (by Vlad Lo...zhanyong.wan2009-09-161-1/+101