aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix README.md broken linkBilly SU2019-01-311-1/+1
| | | Fix the **include/gtest/internal/gtest-port.h** link in the `Tweaking Google Test` title
* Merge pull request #2091 from google/gennadiycivil-patch-1Gennadiy Civil2019-01-301-1/+1
|\ | | | | Repeat #2090
| * Repeat #2090 Gennadiy Civil2019-01-301-1/+1
|/ | | Testing
* Merge pull request #2063 from mathbunnyru:masterAshley Hedberg2019-01-304-18/+31
|\ | | | | | | PiperOrigin-RevId: 231456275
* \ Merge pull request #2090 from KellyWalker/patch-1Gennadiy Civil2019-01-301-1/+1
|\ \ | | | | | | Update advanced.md casing in example
| * | Update advanced.md casing in exampleKelly Walker2019-01-301-1/+1
|/ / | | | | Updated the example that says not to use SetupTestSuite with a small 'u' to actually use a small 'u'
* | Added -Wgnu-zero-variadic-macro-arguments" clangGennadiy Civil2019-01-291-1/+1
| | | | | | This is inspired by work in http://go/gh/google/googletest/pull/2063 but in a separate commit
* | Merge pull request #2063 from mathbunnyru:masterGennadiy Civil2019-01-293-31/+18
|\| | | | | | | PiperOrigin-RevId: 231434457
| * Fix INSTANTIATE_TEST_CASE_P with zero variadic argumentsAyaz Salikhov2019-01-182-7/+32
| |
* | Merge pull request #2086 from hugolm84:fix-dynamic/static-runtime-linkGennadiy Civil2019-01-281-0/+2
|\ \ | | | | | | | | | PiperOrigin-RevId: 231286700
| * | Avoid dynamic/static runtime linking (LNK4098) by properly replacing ↵Hugo Lindström2019-01-281-0/+2
|/ / | | | | | | MD(d)->MT(d) in both C and CXX flags, resolves 2074
* | Merge pull request #2079 from acozzette:fix-distGennadiy Civil2019-01-252-13/+13
|\ \ | | | | | | | | | PiperOrigin-RevId: 230902623
| * | Fixed "make dist"Adam Cozzette2019-01-242-13/+13
|/ / | | | | | | | | | | 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.
* | Merge pull request #2041 from ciband:chore/fix_library_jsonGennadiy Civil2019-01-239-16/+68
|\ \ | | | | | | | | | PiperOrigin-RevId: 230554814
| * | fix: Add Arduino setup()/loop() functions backChris2019-01-072-0/+28
| | | | | | | | | | | | Added setup()/loop() functions back to *_main.cc files to support compiling in CI. Future features could enable this for the end user.
| * | misc: Reapply Arduino functionsChris2019-01-031-0/+14
| | |
| * | misc: Revert formatting changes.Chris2019-01-031-157/+176
| | |
| * | Merge branch 'chore/fix_library_json' of ↵Chris2019-01-0374-2815/+2280
| |\ \ | | | | | | | | | | | | https://github.com/ciband/googletest into chore/fix_library_json
| | * \ Merge branch 'master' into chore/fix_library_jsonChris Johnson2019-01-0374-2815/+2280
| | |\ \
| * | | | chore: Add Windows cmake files to .gitignoreChris2019-01-031-0/+26
| | | | |
| * | | | chore: Alphabetize exclude directories.Chris2019-01-031-3/+3
| |/ / /
| * | | fix: Correct *_main.cc pathsChris2019-01-031-2/+2
| | | |
| * | | fix: Remove Arduino entry pointsChris2019-01-035-228/+188
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Googletest exportAbseil Team2019-01-232-0/+255
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Googletest exportAbseil Team2019-01-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Make internal FunctionMocker class final PiperOrigin-RevId: 230332778
* | | | Googletest exportAbseil Team2019-01-183-2/+43
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Googletest exportAbseil Team2019-01-177-496/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Googletest exportmisterg2019-01-143-12/+11
| | | | | | | | | | | | | | | | | | Change remaining samples to use new Test Suite API PiperOrigin-RevId: 229231566
* | | Googletest exportAbseil Team2019-01-143-34/+98
| | | | | | | | | | | | | | | | | | Add move-only argument support to almost all remaining matchers. PiperOrigin-RevId: 229030728
* | | Googletest exportAbseil Team2019-01-145-105/+19
| | | | | | | | | | | | | | | | | | | | | Deduplicate testing::ReferenceWrapper with std::reference_wrapper. Minor cleanups in matchers_test. PiperOrigin-RevId: 229022872
* | | Googletest exportmisterg2019-01-1124-494/+486
| | | | | | | | | | | | | | | | | | Change tests to use new Test Suite API PiperOrigin-RevId: 228908894
* | | Workaround homebrew issueGennadiy Civil2019-01-101-2/+2
| | |
* | | Merge branch 'master' of github.com:google/googletestGennadiy Civil2019-01-100-0/+0
|\ \ \
| * | | Googletest exportAbseil Team2019-01-101-8/+5
| | | | | | | | | | | | | | | | | | | | | | | | ...text exposed to GitHub repo https://www.github.com/google/googletest PiperOrigin-RevId: 228573333
* | | | Googletest exportAbseil Team2019-01-101-8/+5
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge pull request #2051 from enptfb55:mastergennadiycivil2019-01-088-127/+163
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 228337465
| * | | fixing build errors for unused parameterSal Amato2019-01-061-6/+6
| | |/ | |/|
* | | Googletest exportmisterg2019-01-085-87/+9
| | | | | | | | | | | | | | | | | | | | | Replace testing::internal::ImplicitlyConvertible with std::is_convertible Fixes #2054 PiperOrigin-RevId: 228334305
* | | Googletest exportAbseil Team2019-01-0810-576/+135
| | | | | | | | | | | | | | | | | | Drop generated file gmock-generated-internal-utils.h. PiperOrigin-RevId: 228232195
* | | Merge pull request #2048 from ciband:chore/clang_tidygennadiycivil2019-01-078-158/+122
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 228173023
| * | | clang-tidy: modernize-deprecated-headersChris2019-01-051-1/+1
| | | |
* | | | Googletest exportAbseil Team2019-01-072-8/+45
| |/ / |/| | | | | | | | | | | | | | Fix GTEST_IS_NULL_LITERAL_ for types that have magic implicit conversions. PiperOrigin-RevId: 227879345
* | | Merge pull request #2042 from gennadiycivil/masterGennadiy Civil2019-01-033-108/+106
|\ \ \ | | | | | | | | Update Docs TestCase->TestSuite
| * \ \ Merge branch 'master' of https://github.com/google/googletestGennadiy Civil2019-01-0322-1119/+1502
| |\ \ \ | |/ / / |/| | |
* | | | Googletest exportmisterg2019-01-033-38/+48
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #1261 PiperOrigin-RevId: 227740670
* | | | Googletest exportmisterg2019-01-0320-1081/+1454
| | | | | | | | | | | | | | | | | | | | | | | | TestCase->TestSuite refactoring PiperOrigin-RevId: 227702164
| * | | Update docs, TestCase->TestSuiteGennadiy Civil2019-01-033-108/+106
|/ / /
* | | Update README.mdGennadiy Civil2019-01-031-2/+2
| | |
* | | Update README.mdGennadiy Civil2019-01-031-1/+1
| | |
* | | Update README.mdGennadiy Civil2019-01-031-0/+4
| | |