aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test/gmock-matchers_test.cc
Commit message (Collapse)AuthorAgeFilesLines
* code mergeGennadiy Civil2018-07-201-1/+4
|
* code syncGennadiy Civil2018-07-191-0/+1
|
* Code syncGennadiy Civil2018-07-181-3/+20
|
* Fix gmock not building when -fno-rttiScott Graham2018-05-021-4/+2
| | | | Fixes issue #1554. This is internal cl/195020996.
* mergedGennadiy Civil2018-04-251-1/+0
|\
| * Merge branch 'master' into parameterlessdnsunderland2018-04-181-0/+27
| |\
| * | Clone of unsubmitted cr/176529515. Introduce parameterless expectations.David Sunderland2018-04-181-1/+38
| | |
* | | merging, Gennadiy Civil2018-04-251-13/+54
| |/ |/|
* | 193353312Gennadiy Civil2018-04-181-0/+9
| |
* | cl/193060888Gennadiy Civil2018-04-171-3/+3
| |
* | http://cl/193060888Gennadiy Civil2018-04-171-30/+6
| |
* | http://cl/193060888Gennadiy Civil2018-04-171-0/+42
|/
* msvcGennadiy Civil2018-04-121-2/+2
|
* revert this oneGennadiy Civil2018-04-121-1/+1
|
* merge, ... gmock-matchers testGennadiy Civil2018-04-121-3/+3
|
* small cleanupGennadiy Civil2018-04-121-1/+7
|
* Have to wait for this oneGennadiy Civil2018-04-051-2/+2
|
* Have to wait for this oneGennadiy Civil2018-04-051-1/+1
|
* Merging matchers testGennadiy Civil2018-04-051-0/+3
|
* Merging matchers testGennadiy Civil2018-04-051-40/+779
|
* bad cut/pasteGennadiy Civil2018-04-041-1/+1
|
* More on MSVC warning C4503, decorated name length exceededGennadiy Civil2018-04-041-2/+6
|
* More on MSVC warning C4503, decorated name length exceededGennadiy Civil2018-04-041-1/+1
|
* Address MSVC warning C4503, decorated name length exceeded, name was truncatedGennadiy Civil2018-04-041-0/+2
|
* Fixing build break on MSVCGennadiy Civil2018-04-041-1/+1
|
* merging gmock matchers 1Gennadiy Civil2018-04-041-37/+262
|
* Add matcher for std::variant.Xiaoyi Zhang2018-02-271-0/+64
|
* moving JoinAsTuple to internalGennadiy Civil2018-02-121-26/+3
|
* Fixed typosTroy Holsapple2018-02-071-4/+4
|
* Pass the -Wmissing-declarations warning.David Benjamin2018-01-031-4/+0
| | | | | | This makes it easier to use GTest in projects that build with the -Wmissing-declarations warning. This fixes the warning in headers and source files, though not GTest's own tests as it is rather noisy there.
* Fix gmock tests when std::unary_function unavailableArkady Shapkin2017-10-251-2/+5
|
* Fix tests with VS2015 and VS2017Arkadiy Shapkin2017-10-251-0/+5
|
* Support ref-qualified member functions in Property().Roman Perepelitsa2017-08-221-0/+20
|
* Use std::string and ::string explicitly in gtest and gmock code.Nico Weber2017-05-151-78/+84
| | | | | | | | | This merges a Google-internal change (117235625). Original CL description: This CL was created manually in about an hour with sed, a Python script to find all the places unqualified 'string' was mentioned, and some help from Emacs to add the "std::" qualifications, plus a few manual tweaks.
* Reformatted the Unprintable operator== code style.mazong11232016-07-141-1/+4
|
* Fixed issue #775mazong11232016-07-141-2/+3
|
* Name the helper AsBits()Mark Mentovai2015-11-121-11/+10
|
* Use a templated helper to wrap the castMark Mentovai2015-11-111-14/+15
| | | | | | | | The helper needs to be templated because its argument type can’t be known. FloatingPointTest is instantiated with RawType = float and RawType = double, so Bits will be an unsigned 32-bit or 64-bit type. size_t will be either 32 or 64 bits depending on the system’s definition, typically based on pointer size.
* Leave decltype(max_ulps_) alone and cast, not sure this is betterMark Mentovai2015-11-111-12/+14
|
* Fix warnings encountered in MSVC build of gtest/gmock testsMark Mentovai2015-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | This fixes these warnings: …\gtest\googletest\test\gtest-port_test.cc(78) : error C2220: warning treated as error - no 'object' file generated …\gtest\googletest\test\gtest-port_test.cc(78) : warning C4309: 'static_cast' : truncation of constant value …\gtest\googletest\test\gtest-port_test.cc(79) : warning C4309: 'static_cast' : truncation of constant value …\gtest\googlemock\test\gmock-matchers_test.cc(2712) : error C2220: warning treated as error - no 'object' file generated …\gtest\googlemock\test\gmock-matchers_test.cc(2706) : while compiling class template member function 'testing::gmock_matchers_test::FloatingPointTest<float>::FloatingPointTest(void)' …\gtest\googlemock\test\gmock-matchers_test.cc(2896) : see reference to function template instantiation 'testing::gmock_matchers_test::FloatingPointTest<float>::FloatingPointTest(void)' being compiled …\gtest\googlemock\test\gmock-matchers_test.cc(2896) : see reference to class template instantiation 'testing::gmock_matchers_test::FloatingPointTest<float>' being compiled …\gtest\googlemock\test\gmock-matchers_test.cc(2712) : warning C4267: 'argument' : conversion from 'size_t' to 'const unsigned int', possible loss of data …\gtest\googlemock\test\gmock-matchers_test.cc(2714) : warning C4267: 'argument' : conversion from 'size_t' to 'const unsigned int', possible loss of data …\gtest\googlemock\test\gmock-matchers_test.cc(2716) : warning C4267: 'argument' : conversion from 'size_t' to 'const unsigned int', possible loss of data …\gtest\googlemock\test\gmock-matchers_test.cc(2717) : warning C4267: 'argument' : conversion from 'size_t' to 'const unsigned int', possible loss of data …\gtest\googlemock\test\gmock-matchers_test.cc(2718) : warning C4267: 'argument' : conversion from 'size_t' to 'const unsigned int', possible loss of data …\gtest\googlemock\test\gmock-matchers_test.cc(2721) : warning C4267: 'argument' : conversion from 'size_t' to 'const unsigned int', possible loss of data …\gtest\googlemock\test\gmock-matchers_test.cc(2723) : warning C4267: 'argument' : conversion from 'size_t' to 'const unsigned int', possible loss of data
* Merge pull request #612 from mark-chromium/gmock_rttiBilly Donahue2015-11-101-4/+4
|\ | | | | googlemock: Disable WhenDynamicCastToTest tests when RTTI is off
| * googlemock: Disable WhenDynamicCastToTest tests when RTTI is offMark Mentovai2015-10-121-4/+4
| | | | | | | | https://github.com/google/googletest/issues/610
* | googlemock: Support C++11 language with pre-C++11 libraryMark Mentovai2015-10-121-4/+4
|/ | | | | | This guards use of <type_traits> and its features with GTEST_HAS_STD_TYPE_TRAITS_, and std::function with GTEST_HAS_STD_FUNCTION_.
* move googlemock files into googlemock/ subdirBilly Donahue2015-08-251-0/+5646