| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
Style only change. Make use of advanced testing functions `FloatLE` and `DoubleLE` consistent.
PiperOrigin-RevId: 407660542
|
|
|
|
|
|
|
|
| |
Add docs section on test sharding
Fixes #3622
PiperOrigin-RevId: 405712812
|
|
|
|
|
|
| |
add missing using ::testing::DoAll when DoAll used in example
PiperOrigin-RevId: 402416497
|
| |
|
|\
| |
| |
| | |
PiperOrigin-RevId: 397998384
|
| | |
|
|/ |
|
|
|
|
|
|
| |
Add a caveat section for potential memory leak with derived classes using `SetUpTestSuite`.
PiperOrigin-RevId: 396986728
|
|\
| |
| |
| | |
PiperOrigin-RevId: 392720416
|
| | |
|
|/
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
| |
Format documentation
PiperOrigin-RevId: 388592443
|
|
|
|
|
|
| |
Introduce a new matcher for unescaping Base-64 strings to gmock.
PiperOrigin-RevId: 388471904
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
Proliferation of inclusive language.
PiperOrigin-RevId: 387535677
|
|
|
|
|
|
| |
Remove unneeded using ::std::get;
PiperOrigin-RevId: 383688097
|
|
|
|
|
|
|
|
| |
Add `Conditional` wrapper to gtest
This follows an initial proposal for an 'EqIff` matcher. `Conditional` was considered more precise as an EqIff() matcher may suffer from `Iff` not being universally understood.
PiperOrigin-RevId: 383407665
|
|
|
|
|
|
| |
Implement 'Contains(e).Times(n)' matcher modifier which allows to test for arbitrary occurrences including absence with Times(0).
PiperOrigin-RevId: 382210276
|
|\
| |
| |
| | |
PiperOrigin-RevId: 380705469
|
|/ |
|
|
|
|
|
|
| |
Internal change
PiperOrigin-RevId: 378672633
|
|
|
|
|
|
| |
Add CNAME file for custom domain
PiperOrigin-RevId: 378384525
|
|
|
|
|
|
| |
Update broken link
PiperOrigin-RevId: 378272186
|
|
|
|
|
|
| |
Add CNAME file for custom domain
PiperOrigin-RevId: 377604116
|
|
|
|
|
|
| |
Create new Testing API reference
PiperOrigin-RevId: 376969148
|
|
|
|
|
|
| |
Create new Mocking Reference
PiperOrigin-RevId: 376951575
|
|
|
|
|
|
| |
Fix broken link
PiperOrigin-RevId: 375995669
|
|
|
|
|
|
| |
Create Assertions Reference
PiperOrigin-RevId: 375824718
|
|
|
|
|
|
| |
Add Google Analytics & footer
PiperOrigin-RevId: 375539689
|
|
|
|
|
|
| |
Add missing link
PiperOrigin-RevId: 374774097
|
|
|
|
|
|
| |
Remove inapplicable example
PiperOrigin-RevId: 374762004
|
|
|
|
|
|
| |
Fix a comment in a code snippet.
PiperOrigin-RevId: 374504337
|
|
|
|
|
| |
Docs: Clarify that expectations must be set before mocks are exercised
PiperOrigin-RevId: 373644072
|
|
|
|
|
|
| |
Fix code in googletest parameterized name example.
PiperOrigin-RevId: 373262838
|
|
|
|
|
|
| |
Clean up heading levels and mention `::testing` namespace in Matchers Reference
PiperOrigin-RevId: 373242122
|
|
|
|
|
|
| |
Fix links in Matchers Reference
PiperOrigin-RevId: 372436732
|
|
|
|
|
|
| |
Move actions reference into independent document
PiperOrigin-RevId: 371828549
|
|
|
|
|
|
| |
Clean up links to Matchers Reference
PiperOrigin-RevId: 370821457
|
|
|
|
|
|
| |
Move matchers reference from cheat sheet into its own document
PiperOrigin-RevId: 370749693
|
|
|
|
|
|
|
|
| |
Update the `DescribeTo` signature in the code example at the Writing New Polymorphic Matchers section in gmock_cook_book.
`os` should be a pointer to be consistent with the implementation, which dereference it as `*os`.
PiperOrigin-RevId: 370693387
|
|
|
|
|
|
| |
internal change
PiperOrigin-RevId: 370503556
|
|\
| |
| |
| | |
PiperOrigin-RevId: 369696657
|
| |
| |
| | |
Co-authored-by: Eric Schmidt <shibumi@google.com>
|
| |
| |
| |
| |
| | |
Extended example and some rewording by @ericschmidtatwork, thank you.
Co-authored-by: Eric Schmidt <shibumi@google.com>
|
|/
|
|
|
|
|
| |
A subsection "Skipping test execution" was added to document GTEST_SKIP
and where it can be used.
relates issue #1544
|
|
|
|
|
|
| |
Adds a warning about anonymous namespaces in relation to private testing.
PiperOrigin-RevId: 367730808
|