aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Merges-1Gennadiy Civil2018-03-051-0/+2
| |/ / |/| |
* | | Merge branch 'master' into variant_matcherXiaoyi Zhang2018-02-271-2/+22
|\ \ \
| * | | gmock merging -2Gennadiy Civil2018-02-271-2/+22
| |/ /
* / / Add matcher for std::variant.Xiaoyi Zhang2018-02-271-0/+64
|/ /
* | moving JoinAsTuple to internalGennadiy Civil2018-02-121-26/+3
| |
* | Merge pull request #1446 from tholsapp/masterGennadiy Civil2018-02-092-5/+5
|\ \ | | | | | | Fixed typos
| * | Fixed typosTroy Holsapple2018-02-072-5/+5
| | |
* | | mergesGennadiy Civil2018-02-092-8/+11
|/ /
* | Adding tests to googlemock bazelGennadiy Civil2018-01-262-6/+72
| |
* | Code mergesGennadiy Civil2018-01-262-3/+5
| |
* | [Bazel] Detect Windows with cpu value x64_windows and x64_windows_msvcLoo Rong Jie2018-01-091-1/+2
| | | | | | | | and x64_windows_msvc
* | Merge branch 'master' into missing-declarationsGennadiy Civil2018-01-041-8/+0
|\ \
| * | upstreaming cl 124976692Gennadiy Civil2018-01-031-8/+0
| | |
* | | 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.
* | Add licenses() directive for googlemock/tests.Carlos O'Ryan2017-12-081-0/+2
| | | | | | | | | | Without the directive embedding googletest into third_party breaks any //... target.
* | Fix gmock tests when std::unary_function unavailableArkady Shapkin2017-10-251-2/+5
| |
* | Fix tests with VS2015 and VS2017Arkadiy Shapkin2017-10-252-4/+9
| |
* | Use gender-neutral pronouns in comments and docsJonathan Wakely2017-09-273-3/+3
| |
* | Applying lint checks from upstream google3Alyssa Wilk2017-08-281-4/+7
| |
* | Merge branch 'refs/heads/master' into flag-defaultAlyssa Wilk2017-08-283-0/+95
|\ \
| * | Support ref-qualified member functions in Property().Roman Perepelitsa2017-08-221-0/+20
| | |
| * | Remove unused variableMaurice Gilden2017-08-211-1/+0
| | |
| * | Added "explicit" as per compiler suggestionGennadiy Civil2017-08-201-1/+1
| | |
| * | Proposing these changes, please reviewGennadiy Civil2017-08-201-12/+9
| | | | | | | | | | | | Slightly better names and cleaner tests. Please review
| * | Change tabs to spaces in test caseMaurice Gilden2017-08-181-11/+11
| | |
| * | Switch return type to class without default constructorMaurice Gilden2017-08-181-1/+7
| | |
| * | Fix test if exceptions are not supportedMaurice Gilden2017-08-181-0/+6
| | |
| * | adds test for NiceMock with unknown return valueMaurice Gilden2017-08-181-0/+15
| | |
| * | Merge pull request #1191 from gennadiycivil/masterGennadiy Civil2017-08-101-0/+52
| |\ \ | | | | | | | | Adding Bazel build to googletest (initial version )
| | * | Added Copyrightmisterg2017-08-101-4/+31
| | | |
| | * | Initial Revision, review 164634031misterg2017-08-101-25/+0
| | | |
| | * | WIPmisterg2017-08-091-0/+25
| | | |
| | * | Added googlemock testsmisterg2017-08-091-4/+0
| | | |
| | * | Added googlemock testsmisterg2017-08-091-0/+29
| | | |
* | | | Handling invalid flag valuesAlyssa Wilk2017-08-161-0/+20
| | | |
* | | | Adding a flag option to change the default mock typeAlyssa Wilk2017-08-102-0/+76
|/ / /
* | | Correct some typos in a commentShlomi Fish2017-08-041-1/+1
| | |
* | | Merge pull request #764 from flyd1005/wip-fix-typoGennadiy Civil2017-08-021-1/+1
|\ \ \ | |/ / |/| | remove duplicated words
| * | remove duplicated wordsLi Peng2016-04-271-1/+1
| | | | | | | | | | | | Signed-off-by: Li Peng <lip@dtdream.com>
* | | Use std::string and ::string explicitly in gtest and gmock code.Nico Weber2017-05-159-297/+305
| |/ |/| | | | | | | | | | | | | | | 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
|/
* Fix link that's returned when running tests. #714Jacob Meacham2016-02-162-6/+6
|
* 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-122-6/+6
|/ | | | | | This guards use of <type_traits> and its features with GTEST_HAS_STD_TYPE_TRAITS_, and std::function with GTEST_HAS_STD_FUNCTION_.