aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Silence a signedness-comparison warning in gmock-actions_test.kosak2014-11-171-2/+2
| | | | include <functional> when using std::function in gmock.
* Add ByMove() modifier for the Return() action. Pull in gtest 695.kosak2014-11-171-3/+39
|
* Distinguish between C++11 language and library support for std::function, ↵kosak2014-11-173-10/+10
| | | | | | std::begin, std::end, and std::move in gtest and gmock. Bring in gtest 694.
* Defines the UnorderedPointwise(m, container) matcher, which is like ↵kosak2014-07-281-67/+192
| | | | Pointwise(m, container) but ignores the order of the elements.
* Allows {Unordered,}ElementsAreArray() to accept any STL-style container as ↵kosak2014-07-281-1/+26
| | | | the parameter.
* Add MockFunction::AsStdFunction(). Also pull in gtest 688.kosak2014-06-171-0/+13
|
* Push several shanges:billydonahue2014-05-193-11/+144
| | | | | | | | | | | | | | | | | | | | | | Make single argument constructors explicit in macros. Remove NOMINMAX macro. Add macros for disabling Microsoft Visual C++ warnings. Add WhenDynamicCastTo<T> matcher. A matcher that matches a pointer that matches inner_matcher when dynamic_cast<T> is applied. Add IWYU export pragmas to the tuple include lines. Fix NativeArray to not require a copy constructor unless we ask for one. This allows ElementsAre() to support non-copyable types. Examine WINAPI_FAMILY_PARTITION macros to better distinguish windows platforms. Author: martin@martin.st From: https://codereview.appspot.com/57220043/
* Export tuple and friends in the ::testing namespace.kosak2014-04-027-27/+24
|
* Implement threading support for gmock on Windows.kosak2014-03-241-0/+4
| | | | | Replace U+2013 with U+002D in comment lines. Pull in gtest 681.
* Introduce a BeginEndDistanceIs matcher for containers such as std::forward_listkosak2014-03-121-0/+61
| | | | | | which lack a size() member. Also pull in gtest 678.
* Suppress "Conditional expression is constant" warning on Visual Studio.kosak2014-01-292-0/+4
|
* Support mocking methods with move-only return types.kosak2014-01-291-0/+59
|
* Make Google Mock build cleanly on Visual Studio 2010, 2012, 2013.kosak2014-01-132-11/+22
|
* Adds a note in the "uninteresting mock method call" warning to advise people ↵kosak2014-01-122-4/+16
| | | | | | | how to handle the warning. Clarifies the purpose of utilities in gmock-port.h and adds guidance w.r.t. gmock-port.h vs gtest-port.h. Pulls in gtest r674.
* Distinguish between C++11 language and library support for <initializer_list>.kosak2013-12-042-4/+4
| | | | | Fix spelling: repositary -> repository. Pull in gtest 671.
* Fix warnings encountered with clang -Wall, and pull in gtest 670.kosak2013-12-032-37/+33
|
* Clarify the rationale for gmock_all_test.cc, and pull in gtest 669kosak2013-12-031-2/+5
|
* Don't copy the argument in SafeMatcherCast because it's not safe.kosak2013-12-031-0/+23
|
* avoids clash with the max() macro on Windowszhanyong.wan2013-09-181-95/+60
|
* fixes the bug reported by Andrzej Jarzabek where 2 gmock tests fail when ↵zhanyong.wan2013-09-161-2/+2
| | | | built with VS
* makes googlemock generator handle some class templates; pulls in gtest r662zhanyong.wan2013-09-062-11/+30
|
* Makes some container matchers accept initializer lists in C++11 mode and ↵zhanyong.wan2013-08-082-1/+108
| | | | work with stream-like containers that don't have size() or empty(); exposes StringMatchResultListener for defining composite matchers.
* Makes UnorderedElementsAre*() work with containers that don't have size() or ↵zhanyong.wan2013-07-301-1/+31
| | | | empty().
* Adds matchers UnorderedElementsAre[Array]() (by Billy Donahue); pulls inzhanyong.wan2013-07-282-7/+441
| | | | gtest r660.
* New floating-point matchers: DoubleNear() and friends;zhanyong.wan2013-06-183-2/+256
| | | | AllOf() and AnyOf() can accept any number of arguments now in C++11 mode.
* Makes EXPECT_THAT typesafe; updates CHANGES for 1.7.0; pulls in gtest r653zhanyong.wan2013-04-241-0/+9
|
* Fixes some compatibility issues with STLport.zhanyong.wan2013-04-041-3/+3
|
* Makes WhenSorted() support associative containers (by billydonahue@google.com).zhanyong.wan2013-03-271-0/+161
|
* Adds special support for matching StringPiece. Pulls in gtest r646.zhanyong.wan2013-03-251-0/+38
|
* Adds a cmake target for gmock_ex_test; also fixes name shadowing warnings.zhanyong.wan2013-03-011-7/+7
|
* Improves the tests for nice, naggy, and strict mocks.zhanyong.wan2013-03-013-23/+74
|
* Allows the return type of a mock method to contain unprotected commas.zhanyong.wan2013-03-011-1/+49
|
* Removes unused variables and functions.zhanyong.wan2013-03-013-57/+27
|
* Implements NaggyMock.zhanyong.wan2013-03-011-6/+100
|
* Implements matcher SizeIs().zhanyong.wan2013-03-011-0/+59
|
* Implements matcher IsEmpty(); also pulls in gtest r643.zhanyong.wan2013-03-011-0/+34
|
* Makes googlemock throw a runtime_error instead of abort when a mockzhanyong.wan2013-02-283-94/+257
| | | | | method with no default value is invoked (if exceptions are enabled).
* Unfortunately, the svn repo is a bit out of date. This commit contains 8jgm2012-11-155-34/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that haven't made it to svn. The descriptions of each change are listed below. - Fixes some python shebang lines. - Add ElementsAreArray overloads to gmock. ElementsAreArray now makes a copy of its input elements before the conversion to a Matcher. ElementsAreArray can now take a vector as input. ElementsAreArray can now take an iterator pair as input. - Templatize MatchAndExplain to allow independent string types for the matcher and matchee. I also templatized the ConstCharPointer version of MatchAndExplain to avoid calls with "char*" from using the new templated MatchAndExplain. - Fixes the bug where the constructor of the return type of ElementsAre() saves a reference instead of a copy of the arguments. - Extends ElementsAre() to accept arrays whose sizes aren't known. - Switches gTest's internal FilePath class from testing::internal::String to std::string. testing::internal::String was introduced when gTest couldn't depend on std::string. It's now deprecated. - Switches gTest & gMock from using testing::internal::String objects to std::string. Some static methods of String are still in use. We may be able to remove some but not all of them. In particular, String::Format() should eventually be removed as it truncates the result at 4096 characters, often causing problems.
* Makes gmock's Pointee() work for optional<T> (by Jeffrey Yasskin).vladlosev2012-08-141-0/+32
|
* Pulls in gtest r615.zhanyong.wan2012-05-311-17/+17
| | | | | | Renames internal enums to the kFoo naming style. Fixes gmock doctor to work with newer versions of Clang.
* Reduced template instantiation depth for the AllOf and AnyOf matchers. Also ↵jgm2012-04-106-42/+104
| | | | some formatting changes.
* Fixes a lock reentrancy when destroying a mock causes destruction of another ↵vladlosev2011-10-241-1/+52
| | | | mock (issue 79) (by Aaron Jacobs).
* Implements matchers WhenSorted() and WhenSortedBy(); pulls in gtest r595.zhanyong.wan2011-09-161-0/+81
|
* Adds support for building Google Mock as a shared library (DLL).vladlosev2011-05-201-1/+1
|
* A test to verify correcteness of Google Mock on multiple threads.vladlosev2011-05-111-0/+322
|
* simplifies TrulyMatcher and adds a test for itzhanyong.wan2011-04-141-0/+23
|
* Changes diagnostic output of the question mark from '\?' to '?'.vladlosev2011-04-011-6/+6
|
* Prevents ADL in AllOf() and AnyOf() (by Manuel Klimek).zhanyong.wan2011-03-161-0/+29
|
* Disables SetArgPointee("string literal") for GCC 4.0- and Symbian, andzhanyong.wan2011-03-091-5/+46
| | | | adds support for SetArgPointee(L"wide string literal") -- by Vlad Losev.
* Indents preprocessor directives.zhanyong.wan2011-02-246-24/+30
|