- 10 Nov, 2021 1 commit
-
-
Abseil Team authored
Revert CL that updated example for SetUpTestSuite/TearDownTestSuite to initialize static member variables inline. It seems that non-const static data members for some reason still must be initialized out-of-line. PiperOrigin-RevId: 408913846
-
- 09 Nov, 2021 3 commits
-
-
Abseil Team authored
Update example for SetUpTestSuite/TearDownTestSuite to use modern C++ standards. Currently it is using an outdated C++ construct (defining static member variables separately from the declaration). PiperOrigin-RevId: 408663014
-
Abseil Team authored
Add missing InitGoogleTest line in "Registering tests" example code Copying the original code gives the following error message """ IMPORTANT NOTICE - DO NOT IGNORE: This test program did NOT call testing::InitGoogleTest() before calling RUN_ALL_TESTS(). This is INVALID. Soon Google Test will start to enforce the valid usage. Please fix it ASAP, or IT WILL START TO FAIL. """ PiperOrigin-RevId: 408385714
-
Abseil Team authored
Style only change. Make use of advanced testing functions `FloatLE` and `DoubleLE` consistent. PiperOrigin-RevId: 407660542
-
- 03 Nov, 2021 1 commit
-
-
Abseil Team authored
Add docs section on test sharding Fixes #3622 PiperOrigin-RevId: 405712812
-
- 16 Sep, 2021 1 commit
-
-
Abseil Team authored
Add a caveat section for potential memory leak with derived classes using `SetUpTestSuite`. PiperOrigin-RevId: 396986728
-
- 20 Aug, 2021 1 commit
-
-
Abseil Team authored
Standardize access to GoogleTest flags on GTEST_FLAG_GET/GTEST_FLAG_SET Custom implementations can decide how access to flags is performed depending on the implementation of flags being used. PiperOrigin-RevId: 391971115
-
- 04 Aug, 2021 3 commits
-
-
Abseil Team authored
Format documentation PiperOrigin-RevId: 388592443
-
Abseil Team authored
Standardize access to GoogleTest flags on GTEST_FLAG_GET/GTEST_FLAG_SET Custom implementations can decide how access to flags is performed depending on the implementation of flags being used. PiperOrigin-RevId: 388181424
-
Abseil Team authored
Proliferation of inclusive language. PiperOrigin-RevId: 387535677
-
- 02 Jun, 2021 2 commits
-
-
Abseil Team authored
Create new Testing API reference PiperOrigin-RevId: 376969148
-
Abseil Team authored
Create Assertions Reference PiperOrigin-RevId: 375824718
-
- 21 May, 2021 2 commits
-
-
Abseil Team authored
Add missing link PiperOrigin-RevId: 374774097
-
Abseil Team authored
Remove inapplicable example PiperOrigin-RevId: 374762004
-
- 13 May, 2021 1 commit
-
-
Abseil Team authored
Fix code in googletest parameterized name example. PiperOrigin-RevId: 373262838
-
- 29 Apr, 2021 2 commits
-
-
Abseil Team authored
Clean up links to Matchers Reference PiperOrigin-RevId: 370821457
-
Abseil Team authored
Move matchers reference from cheat sheet into its own document PiperOrigin-RevId: 370749693
-
- 15 Apr, 2021 3 commits
-
-
Sebastian Krämer authored
Co-authored-by:Eric Schmidt <shibumi@google.com>
-
Sebastian Krämer authored
Extended example and some rewording by @ericschmidtatwork, thank you. Co-authored-by:Eric Schmidt <shibumi@google.com>
-
Sebastian Krämer authored
A subsection "Skipping test execution" was added to document GTEST_SKIP and where it can be used. relates issue #1544
-
- 13 Apr, 2021 1 commit
-
-
Abseil Team authored
Adds a warning about anonymous namespaces in relation to private testing. PiperOrigin-RevId: 367730808
-
- 25 Mar, 2021 2 commits
-
-
Abseil Team authored
Code style cleanup in docs PiperOrigin-RevId: 364907938
-
Abseil Team authored
Update advanced.md PiperOrigin-RevId: 364839958
-
- 04 Mar, 2021 1 commit
-
-
Abseil Team authored
Fix enum names in a value-parameterized test example. PiperOrigin-RevId: 360559723
-
- 19 Feb, 2021 1 commit
-
-
Abseil Team authored
Add files for GitHub Pages PiperOrigin-RevId: 358289110
-
- 18 Feb, 2021 2 commits
-
-
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
Internal change PiperOrigin-RevId: 356867746
-
- 11 Feb, 2021 1 commit
-
-
Abseil Team authored
Docs cleanup PiperOrigin-RevId: 356798444
-
- 05 Feb, 2021 1 commit
-
-
Abseil Team authored
Fix terminal output formatting in advanced guide PiperOrigin-RevId: 355233178
-
- 26 Jan, 2021 2 commits
-
-
Abseil Team authored
Delete internal tags from docs PiperOrigin-RevId: 353769887
-
Abseil Team authored
Merge CONTRIBUTORS, delete LICENSEs in googletest/ and googlemock/ PiperOrigin-RevId: 352558822
-
- 15 Jan, 2021 2 commits
-
-
Abseil Team authored
Fixes #3222, fixes #3225, closes #3223 PiperOrigin-RevId: 352066131
-
Krystian Kuzniarek authored
-
- 14 Jan, 2021 1 commit
-
-
Abseil Team authored
Move all docs into top-level docs/ directory PiperOrigin-RevId: 350211277
-
- 27 Oct, 2020 2 commits
-
-
Elliott Brossard authored
-
Abseil Team authored
I'm not sure how this relates to the GitHub repo. Could you please advise? PiperOrigin-RevId: 339060470
-
- 19 Oct, 2020 1 commit
-
-
Abseil Team authored
Fix typo in the "Assertion Placement" section PiperOrigin-RevId: 337435223
-
- 14 Oct, 2020 1 commit
-
-
Abseil Team authored
Prefer using over typedef. PiperOrigin-RevId: 337080404
-
- 24 Sep, 2020 1 commit
-
-
Abseil Team authored
Address OSS Issue #2463 https://github.com/google/googletest/issues/2463 PiperOrigin-RevId: 333289989
-
- 14 Aug, 2020 1 commit
-
-
krzysio authored
Mention matchers as an alternative to assertions in subroutines. Matchers are often the better choice - they can provide more informative error messages and circumvent all of the complexity described in this section. PiperOrigin-RevId: 326332149
-