aboutsummaryrefslogtreecommitdiff
path: root/googlemock
AgeCommit message (Collapse)Author
2016-03-04Link license files to NOTICE. Add MODULE_LICENSE.ndk-r13-beta2ndk-r13-beta1ndk-r13ndk-r12bndk-r12-beta2ndk-r12-beta1android-wear-7.1.1_r1android-n-iot-preview-2nougat-mr1-wear-releasendk-r13-releasendk-r12-releasen-iot-preview-2Dan Albert
Change-Id: Icfb000c136a02522a290b7588bf570f65347c0fc
2015-12-10Merge pull request #657 from audiofanatic/issue655-targetHeaderDepsBilly Donahue
Add include dirs to targets if CMake version supports it
2015-12-10Merge pull request #650 from jpuigcerver/masterBilly Donahue
Added missing CMake install rules for GMock
2015-12-08fixed link in googlemock documentationPaul Rosset
2015-12-06Add include dirs to targets if CMake version supports itCraig Scott
2015-12-03Added CMake install rules for GMockJoan Puigcerver
2015-11-30Merge pull request #592 from Ferenc-/masterBilly Donahue
Fix typo in googlemock/README.md
2015-11-12Name the helper AsBits()Mark Mentovai
2015-11-11Use a templated helper to wrap the castMark Mentovai
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.
2015-11-11Leave decltype(max_ulps_) alone and cast, not sure this is betterMark Mentovai
2015-11-11Fix warnings encountered in MSVC build of gtest/gmock testsMark Mentovai
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
2015-11-10Merge pull request #612 from mark-chromium/gmock_rttiBilly Donahue
googlemock: Disable WhenDynamicCastToTest tests when RTTI is off
2015-10-12googlemock: Disable WhenDynamicCastToTest tests when RTTI is offMark Mentovai
https://github.com/google/googletest/issues/610
2015-10-12googlemock: Support C++11 language with pre-C++11 libraryMark Mentovai
This guards use of <type_traits> and its features with GTEST_HAS_STD_TYPE_TRAITS_, and std::function with GTEST_HAS_STD_FUNCTION_.
2015-09-23Fix broken link to FrequentlyAskedQuestionsMarco Molteni
2015-09-19Adding missing files to googlemock distribution.Martin Maly
2015-09-19Fix typo in googlemock/README.mdFerenc-
2015-09-17Fix relative links in googlemock docs.Billy Donahue
2015-09-17Fix the googlemock autotools build.Simon Newton
2015-09-08Include <memory> to use std::unique_ptr.Billy Donahue
2015-09-07Googlemock has some tuples containing lvalue refs in its unit tests.Billy Donahue
These tuples are created with make_tuple, which is given temporaries. The make_tuple is in a function argument list. A possibly overzealous static_assert in libc++'s std::tuple ctor is firing in our 'Perform(make_tuple("hi"))' calls, so we can't use its make_tuple here. Instead we will use explicitly-constructed tuples constructed from non-temporary strings. Workaround for llvm bug: https://llvm.org/bugs/show_bug.cgi?id=20855 An alternative to https://github.com/google/googletest/pull/580 .
2015-08-30mergeBilly Donahue
2015-08-30readme mergingBilly Donahue
2015-08-30Fix gmock_doctor.py for Python3Syl
2015-08-26googlemock: fix unified buildArnaud Lacombe
2015-08-26readme mergingBilly Donahue
2015-08-26readme mergingBilly Donahue
2015-08-25move ProjectHome files into rootBilly Donahue
2015-08-25move googlemock files into googlemock/ subdirBilly Donahue