| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
| |
Update the example for Notify to use a lambda.
It is much less boilerplate and easier to remember.
PiperOrigin-RevId: 367284222
|
|
|
|
|
| |
Docs: Add examples for `FieldsAre` matcher
PiperOrigin-RevId: 367263024
|
|
|
|
|
| |
Docs: Clarifying matcher in `Pointwise` and `UnorderedPointwise`
PiperOrigin-RevId: 367059198
|
|
|
|
|
|
| |
Clarify explanation of mocking free functions
PiperOrigin-RevId: 364943561
|
|
|
|
|
|
| |
Minor formatting updates
PiperOrigin-RevId: 364935205
|
|
|
|
|
|
| |
Code style cleanup in docs
PiperOrigin-RevId: 364907938
|
|
|
|
|
|
| |
Update advanced.md
PiperOrigin-RevId: 364839958
|
|
|
|
|
|
| |
Update explanation of `EXPECT_EQ(NULL, ptr)` in FAQ
PiperOrigin-RevId: 364626422
|
|
|
|
|
|
| |
Code style cleanups in cheat sheet
PiperOrigin-RevId: 364465553
|
|
|
|
|
|
| |
Add CMake quickstart
PiperOrigin-RevId: 364437779
|
|
|
|
|
|
| |
Add Bazel quickstart
PiperOrigin-RevId: 364419540
|
|
|
|
|
|
| |
Add missing period and use "that" in restrictive clause.
PiperOrigin-RevId: 361941663
|
|
|
|
|
|
| |
Fix enum names in a value-parameterized test example.
PiperOrigin-RevId: 360559723
|
|
|
|
|
|
| |
Add Supported Platforms page to docs
PiperOrigin-RevId: 360307129
|
|
|
|
|
|
| |
Update links in index.md
PiperOrigin-RevId: 358956598
|
|
|
|
|
|
| |
Remove anchors from page titles in docs
PiperOrigin-RevId: 358474917
|
|
|
|
|
|
| |
Add files for GitHub Pages
PiperOrigin-RevId: 358289110
|
|
|
|
|
|
| |
Explain how to wrap matchers.
PiperOrigin-RevId: 357901293
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
Add files for GitHub Pages
PiperOrigin-RevId: 357096486
|
|
|
|
|
|
| |
Internal change
PiperOrigin-RevId: 356867746
|
|
|
|
|
|
| |
Docs cleanup
PiperOrigin-RevId: 356798444
|
|
|
|
|
|
| |
Fix table formatting in cookbook
PiperOrigin-RevId: 355659722
|
|
|
|
|
|
| |
Add a note to recommend against using `Property()` for functions that the test author does not own.
PiperOrigin-RevId: 355295183
|
|
|
|
|
|
| |
Update description of `Property()` matcher
PiperOrigin-RevId: 355253498
|
|
|
|
|
|
| |
Fix terminal output formatting in advanced guide
PiperOrigin-RevId: 355233178
|
|
|
|
|
|
| |
Stop referring to Google's internal libraries in FAQ
PiperOrigin-RevId: 355060895
|
|
|
|
|
|
| |
Document the fact that MatchAndExplain(T, MatchResultListener*) is supported.
PiperOrigin-RevId: 354172275
|
|
|
|
|
|
| |
Add missing `is_gtest_matcher` to the polymorphic matcher example.
PiperOrigin-RevId: 353881883
|
|
|
|
|
|
| |
Delete internal tags from docs
PiperOrigin-RevId: 353769887
|
|
|
|
|
|
| |
Updates the gMock cheat sheet to include the versions of the Field and Property matchers which take an additional name parameter.
PiperOrigin-RevId: 353273968
|
|
|
|
|
|
| |
| `IsEmpty()` | `argument` is an empty string. |
PiperOrigin-RevId: 352880252
|
|
|
|
|
|
| |
Remove scripts for code generating together with related files.
PiperOrigin-RevId: 352805926
|
|
|
|
|
|
| |
Merge CONTRIBUTORS, delete LICENSEs in googletest/ and googlemock/
PiperOrigin-RevId: 352558822
|
|
|
|
|
|
| |
Fixes #3222, fixes #3225, closes #3223
PiperOrigin-RevId: 352066131
|
|\
| |
| |
| | |
PiperOrigin-RevId: 352044381
|
| | |
|
| |
| |
| |
| |
| |
| | |
Add "using is_gtest_matcher = void" to the DivisibleBy7Matcher example.
PiperOrigin-RevId: 351797821
|
|/
|
|
|
|
|
|
|
|
|
|
| |
Change Matcher<T> to allow binding an implementation by value directly:
- Drop the requirement of MatcherInterface. Doing manual type erasure avoid
extra layers in many cases.
- Avoid the adaptor for `MatcherInterface<T>` and `MatcherInterface<const T&>` mismatch.
- Use a small object optimization when possible. This makes things like
`_` and `Eq(1)` really cheap and do not require memory allocations.
- Migrate some matchers to the new model to speed them up and to test the new framework. More matchers to come in future changes.
PiperOrigin-RevId: 350580998
|
|
|
|
|
|
| |
Move all docs into top-level docs/ directory
PiperOrigin-RevId: 350211277
|
| |
|
| |
|
| |
|
|
|