- 26 Feb, 2021 2 commits
-
-
Abseil Team authored
Update gtest doc link PiperOrigin-RevId: 359622286
-
Abseil Team authored
Update links in index.md PiperOrigin-RevId: 358956598
-
- 22 Feb, 2021 1 commit
-
-
Abseil Team authored
Remove anchors from page titles in docs PiperOrigin-RevId: 358474917
-
- 19 Feb, 2021 1 commit
-
-
Abseil Team authored
Add files for GitHub Pages PiperOrigin-RevId: 358289110
-
- 18 Feb, 2021 8 commits
-
-
Abseil Team authored
Explicitly skip tests after fatal global environment setup errors Previously the tests were all skipped, but the resulting output claimed all tests passed. Before: ``` [----------] Global test environment set-up. <failure message> [----------] Global test environment tear-down [==========] 1 test from 1 test suite ran. (83 ms total) [ PASSED ] 1 test. [ FAILED ] 0 tests, listed below: ``` After: ``` [==========] Running 1 test from 1 test suite. [----------] Global test environment set-up. <failure message> [----------] 1 test from SomeTest [ RUN ] SomeTest.DoesFoo <...>: Skipped [ SKIPPED ] SomeTest.DoesFoo (0 ms) [----------] 1 test from SomeTest (0 ms total) [----------] Global test environment tear-down [==========] 1 test from 1 test suite ran. (68 ms total) [ PASSED ] 0 tests. [ SKIPPED ] 1 test, listed below: [ SKIPPED ] SomeTest.DoesFoo [ FAILED ] 0 tests, listed below: ``` PiperOrigin-RevId: 358026389
-
Abseil Team authored
Explain how to wrap matchers. PiperOrigin-RevId: 357901293
-
Abseil Team authored
Update stale links to `gmock_cook_book.md`. I'm a new googletest user and found these links broken when reading the documentation. PiperOrigin-RevId: 357786392
-
Abseil Team authored
Update the custom name example to not use underscores. The NOTE a few blocks above specifically calls out that test names should not contain undersccores, so probably the example should not suggest using underscores. PiperOrigin-RevId: 357204578
-
Abseil Team authored
Add files for GitHub Pages PiperOrigin-RevId: 357096486
-
Abseil Team authored
Add issue templates PiperOrigin-RevId: 357075859
-
Abseil Team authored
Make include guards conform with https://google.github.io/styleguide/cppguide.html#The__define_Guard, attempt #2 PiperOrigin-RevId: 357056902
-
Abseil Team authored
Internal change PiperOrigin-RevId: 356867746
-
- 11 Feb, 2021 9 commits
-
-
Abseil Team authored
Docs cleanup PiperOrigin-RevId: 356798444
-
Abseil Team authored
Mark move constructor noexcept PiperOrigin-RevId: 356772642
-
Andy Soffer authored
PiperOrigin-RevId: 356610323
-
Abseil Team authored
Revert include guard fix PiperOrigin-RevId: 356588893
-
Abseil Team authored
PiperOrigin-RevId: 356572459
-
Andy Soffer authored
PiperOrigin-RevId: 356568444
-
Abseil Team authored
Fix #2987 Removing const before passing any types through UniversalPrinter. PiperOrigin-RevId: 356508875
-
Abseil Team authored
Fix build for MinGW + clang In [1], empty_bases "is only supported when using the Microsoft C++ ABI." Disable it for MinGW. https://clang.llvm.org/docs/AttributeReference.html#empty-bases PiperOrigin-RevId: 356373782
-
Abseil Team authored
Make include guards conform with https://google.github.io/styleguide/cppguide.html#The__define_Guard PiperOrigin-RevId: 355882793
-
- 05 Feb, 2021 13 commits
-
-
platisd authored
If a function that takes no arguments explicitly states (void) then do not include it in the mocked method argument list since it triggers static assertions that expect no arguments to be present. Fixes (?) #3261
-
Abseil Team authored
Fix table formatting in cookbook PiperOrigin-RevId: 355659722
-
dmauro authored
Disable Travis CI. The migration to travis-ci.com is incompatible with security policy. These tests are now run on Kokoro. PiperOrigin-RevId: 355438343
-
Abseil Team authored
Delete Google-internal IWYU pragmas PiperOrigin-RevId: 355398547
-
Abseil Team authored
Add a note to recommend against using `Property()` for functions that the test author does not own. PiperOrigin-RevId: 355295183
-
Abseil Team authored
Update description of `Property()` matcher PiperOrigin-RevId: 355253498
-
Abseil Team authored
Fix terminal output formatting in advanced guide PiperOrigin-RevId: 355233178
-
dmcardle authored
Use linear-time string globbing in UnitTestOptions::MatchesFilter. Algorithm is based on https://research.swtch.com/glob. Closes #3227 PiperOrigin-RevId: 355222440
-
Abseil Team authored
Fix includes in fuse_gmock_files.py PiperOrigin-RevId: 355166403
-
Abseil Team authored
Stop referring to Google's internal libraries in FAQ PiperOrigin-RevId: 355060895
-
Abseil Team authored
Address `-Wpedantic` issue introduced in https://github.com/google/googletest/pull/3204 Raised via https://github.com/google/googletest/commit/4898cdacfec11e71fa3083cdbc935852ad8162e9#commitcomment-46413996 PiperOrigin-RevId: 354198931
-
Abseil Team authored
Document the fact that MatchAndExplain(T, MatchResultListener*) is supported. PiperOrigin-RevId: 354172275
-
Abseil Team authored
Remove uses of GTEST_HAS_TYPED_TEST_P and GTEST_HAS_TYPED_TEST. PiperOrigin-RevId: 353935996
-
- 26 Jan, 2021 6 commits
-
-
Abseil Team authored
Add missing `is_gtest_matcher` to the polymorphic matcher example. PiperOrigin-RevId: 353881883
-
Abseil Team authored
Delete internal tags from docs PiperOrigin-RevId: 353769887
-
Abseil Team authored
Delete obsolete comment, gtest-param-test.h isn't generated by pump anymore PiperOrigin-RevId: 353680589
-
CJ Johnson authored
PiperOrigin-RevId: 353327372
-
Abseil Team authored
Updates the gMock cheat sheet to include the versions of the Field and Property matchers which take an additional name parameter. PiperOrigin-RevId: 353273968
-
Abseil Team authored
| `IsEmpty()` | `argument` is an empty string. | PiperOrigin-RevId: 352880252
-