- 05 Feb, 2019 1 commit
-
-
Keiichi Watanabe authored
This is just a mistake in the document. Google Test doesn't output such an invalid JSON report. Signed-off-by:Keiichi Watanabe <keiichiw@chromium.org>
-
- 04 Feb, 2019 6 commits
-
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
misterg authored
Address -Wgnu-zero-variadic-macro-arguments Originally in OSS PR #2063 https://github.com/google/googletest/pull/2063 Fix regression in INSTANTIATE_TEST_SUITE_P macro to accept function pointers properly. PiperOrigin-RevId: 232316698
-
misterg authored
Mark legacy _TEST_CASE_ macros as deprecated PiperOrigin-RevId: 232303251
-
Abseil Team authored
Update example code in gtest.h to prefer override over virtual now that it is widely available in C++11. PiperOrigin-RevId: 232057792
-
Gennadiy Civil authored
PiperOrigin-RevId: 232028696
-
- 01 Feb, 2019 4 commits
-
-
Abseil Team authored
Fix stack overflow in AnyOfArray tests. PiperOrigin-RevId: 231881125
-
Chris Johnson authored
-
Chris authored
Added Arduino to the embedded platform list to allow for a stubbed out version of GetCurrentDir.
-
Chris authored
Added [gmock|gtest]_all.cc to PIO ignore list to avoid getting duplicate symbols since PIO will compile the individual files.
-
- 31 Jan, 2019 2 commits
-
-
Gennadiy Civil authored
Fix README.md broken link
-
Billy SU authored
Fix the **include/gtest/internal/gtest-port.h** link in the `Tweaking Google Test` title
-
- 30 Jan, 2019 5 commits
-
-
Gennadiy Civil authored
Repeat #2090
-
Gennadiy Civil authored
Testing
-
Ashley Hedberg authored
PiperOrigin-RevId: 231456275
-
Gennadiy Civil authored
Update advanced.md casing in example
-
Kelly Walker authored
Updated the example that says not to use SetupTestSuite with a small 'u' to actually use a small 'u'
-
- 29 Jan, 2019 2 commits
-
-
Gennadiy Civil authored
This is inspired by work in http://go/gh/google/googletest/pull/2063 but in a separate commit
-
Gennadiy Civil authored
PiperOrigin-RevId: 231434457
-
- 28 Jan, 2019 2 commits
-
-
Gennadiy Civil authored
PiperOrigin-RevId: 231286700
-
Hugo Lindström authored
Avoid dynamic/static runtime linking (LNK4098) by properly replacing MD(d)->MT(d) in both C and CXX flags, resolves 2074
-
- 25 Jan, 2019 1 commit
-
-
Gennadiy Civil authored
PiperOrigin-RevId: 230902623
-
- 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 2 commits
-
-
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
-
Ayaz Salikhov authored
-
- 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 2 commits
-
-
gennadiycivil authored
PiperOrigin-RevId: 228337465
-
misterg authored
Replace testing::internal::ImplicitlyConvertible with std::is_convertible Fixes #2054 PiperOrigin-RevId: 228334305
-