Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
aa9b44a1
Commit
aa9b44a1
authored
May 18, 2021
by
Abseil Team
Committed by
Dino Radaković
May 19, 2021
Browse files
Googletest export
Fix a comment in a code snippet. PiperOrigin-RevId: 374504337
parent
eb6e9273
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
docs/gmock_cook_book.md
docs/gmock_cook_book.md
+1
-1
No files found.
docs/gmock_cook_book.md
View file @
aa9b44a1
...
@@ -3363,7 +3363,7 @@ or,
...
@@ -3363,7 +3363,7 @@ or,
```cpp
```cpp
using ::testing::Not;
using ::testing::Not;
...
...
// Verifies that
two
value
s are
divisible by 7.
// Verifies that
a
value
is
divisible by 7
and the other is not
.
EXPECT_THAT(some_expression, IsDivisibleBy7());
EXPECT_THAT(some_expression, IsDivisibleBy7());
EXPECT_THAT(some_other_expression, Not(IsDivisibleBy7()));
EXPECT_THAT(some_other_expression, Not(IsDivisibleBy7()));
```
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment