- 24 Jan, 2019 1 commit
-
-
Adam Cozzette authored
I made a few updates to the Makefile.am files so that "make dist" succeeds and produces a usable tarball. We need this for protobuf because the protobuf tarballs include a bundled copy of googletest.
-
- 23 Jan, 2019 2 commits
-
-
Gennadiy Civil authored
PiperOrigin-RevId: 230554814
-
Abseil Team authored
Add AllOfArray matcher that verifies a value matches all member of some array/container/list/set/..., e.g: EXPECT_THAT(1, AnyOfArray({1, 2, 3})) In the simplest form this is identical to AnyOf(1, 2, 3). But unlike that one it works on containers. Add AnyOfArray matcher that verifies a value matches any member of some array/container/list/set/... PiperOrigin-RevId: 230403653
-
- 22 Jan, 2019 1 commit
-
-
Abseil Team authored
Make internal FunctionMocker class final PiperOrigin-RevId: 230332778
-
- 18 Jan, 2019 1 commit
-
-
Abseil Team authored
Fix mocking method arguments with templated copy constructors. A previous change removed workarounds for old compilers from googletest and googlemock. Unfortunately, a bit of code that started as a workaround for Symbian's C++ compiler is still needed to avoid copy/move constructor ambiguity when mocking functions with certain argument types. The test case added by this CL is extracted from Chrome's codebase, and was discovered while attempting to roll googletest. PiperOrigin-RevId: 229801765
-
- 17 Jan, 2019 1 commit
-
-
Abseil Team authored
Refactor the `Invoke` and `InvokeWithoutArgs` actions: - Replace pump'd classes and functions with templates. - Make the polymorphic actions be polymorphic functors instead. - Fix Invoke(Callback*) to work with subclasses of the callbacks, instead of trying to diagnose that in gmock_doctor. PiperOrigin-RevId: 229604112
-
- 14 Jan, 2019 3 commits
-
-
misterg authored
Change remaining samples to use new Test Suite API PiperOrigin-RevId: 229231566
-
Abseil Team authored
Add move-only argument support to almost all remaining matchers. PiperOrigin-RevId: 229030728
-
Abseil Team authored
Deduplicate testing::ReferenceWrapper with std::reference_wrapper. Minor cleanups in matchers_test. PiperOrigin-RevId: 229022872
-
- 11 Jan, 2019 1 commit
-
-
misterg authored
Change tests to use new Test Suite API PiperOrigin-RevId: 228908894
-
- 10 Jan, 2019 4 commits
-
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Abseil Team authored
Fix warning about deprecation of implicit operations such as copy constructors or assignment operators. Specifically: MatcherBase's default copy constructor, assignment operator, move operator, and move assignment operator are now declared explicitly rather than depending on the compiler implicit generation (which is disallowed/warned against due to MatcherBase's declaration of the destructor). PiperOrigin-RevId: 228573333
-
Abseil Team authored
...text exposed to GitHub repo https://www.github.com/google/googletest PiperOrigin-RevId: 228573333
-
- 08 Jan, 2019 3 commits
-
-
gennadiycivil authored
PiperOrigin-RevId: 228337465
-
misterg authored
Replace testing::internal::ImplicitlyConvertible with std::is_convertible Fixes #2054 PiperOrigin-RevId: 228334305
-
Abseil Team authored
Drop generated file gmock-generated-internal-utils.h. PiperOrigin-RevId: 228232195
-
- 07 Jan, 2019 3 commits
-
-
Chris authored
Added setup()/loop() functions back to *_main.cc files to support compiling in CI. Future features could enable this for the end user.
-
gennadiycivil authored
PiperOrigin-RevId: 228173023
-
Abseil Team authored
Fix GTEST_IS_NULL_LITERAL_ for types that have magic implicit conversions. PiperOrigin-RevId: 227879345
-
- 06 Jan, 2019 1 commit
-
-
Sal Amato authored
-
- 05 Jan, 2019 1 commit
-
-
Chris authored
-
- 04 Jan, 2019 7 commits
-
-
Chris authored
-
Chris authored
-
https://github.com/ciband/googletestChris authored
Merge branch 'chore/fix_library_json' of https://github.com/ciband/googletest into chore/fix_library_json
-
Chris Johnson authored
-
Chris authored
-
Chris authored
-
Gennadiy Civil authored
Update Docs TestCase->TestSuite
-
- 03 Jan, 2019 11 commits
-
-
-
Gennadiy Civil authored
-
misterg authored
Fixes #1261 PiperOrigin-RevId: 227740670
-
misterg authored
TestCase->TestSuite refactoring PiperOrigin-RevId: 227702164
-
Chris authored
-
Chris authored
Improved flexibility by removing the Arduino entry points in favor of manual calls to setup/loop that the user can call from their entry point. This is the more common use case for Arudino. Also added the gtest/gmock_main files to the PlatformIO ignore list since we are not supporting that feature.
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
Example/sample makefile improvements
-
Gennadiy Civil authored
PiperOrigin-RevId: 227615222
-