diff options
author | Abseil Team <absl-team@google.com> | 2019-09-06 16:54:35 (GMT) |
---|---|---|
committer | Shaindel Schwartz <shaindel@google.com> | 2019-09-09 17:40:25 (GMT) |
commit | c2b2cd8883f51184a28491f1d8fcb248b0bf0d65 (patch) | |
tree | 6b5a628e7afaad34c19f2b0a214bfa09d5f8d6ff /googlemock | |
parent | 3f05f651ae3621db58468153e32016bc1397800b (diff) | |
download | googletest-c2b2cd8883f51184a28491f1d8fcb248b0bf0d65.zip googletest-c2b2cd8883f51184a28491f1d8fcb248b0bf0d65.tar.gz googletest-c2b2cd8883f51184a28491f1d8fcb248b0bf0d65.tar.bz2 |
Googletest export
...text exposed to GitHub repo https://www.github.com/google/googletest
PiperOrigin-RevId: 267617889
Diffstat (limited to 'googlemock')
-rw-r--r-- | googlemock/docs/cheat_sheet.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/googlemock/docs/cheat_sheet.md b/googlemock/docs/cheat_sheet.md index 239a4c6..a79c4c8 100644 --- a/googlemock/docs/cheat_sheet.md +++ b/googlemock/docs/cheat_sheet.md @@ -221,17 +221,17 @@ and the default action will be taken each time. <!-- GOOGLETEST_CM0020 DO NOT DELETE --> A **matcher** matches a *single* argument. You can use it inside `ON_CALL()` or -`EXPECT_CALL()`, or use it to validate a value directly: +`EXPECT_CALL()`, or use it to validate a value directly using two macros: <!-- mdformat off(github rendering does not support multiline tables) --> -| Matcher | Description | +| Macro | Description | | :----------------------------------- | :------------------------------------ | | `EXPECT_THAT(actual_value, matcher)` | Asserts that `actual_value` matches `matcher`. | | `ASSERT_THAT(actual_value, matcher)` | The same as `EXPECT_THAT(actual_value, matcher)`, except that it generates a **fatal** failure. | <!-- mdformat on --> -Built-in matchers (where `argument` is the function argument) are divided into -several categories: +Built-in matchers (where `argument` is the function argument, e.g. +`actual_value` in the example above) are divided into several categories: #### Wildcard |