Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
b050d6c4
Commit
b050d6c4
authored
Jun 10, 2021
by
Abseil Team
Committed by
Dino Radaković
Jun 11, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Googletest export
Internal change PiperOrigin-RevId: 378672633
parent
3c4b3a03
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
primer.md
docs/primer.md
+1
-1
No files found.
docs/primer.md
View file @
b050d6c4
...
@@ -319,7 +319,7 @@ The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is
...
@@ -319,7 +319,7 @@ The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is
to use
`EXPECT_*`
when you want the test to continue to reveal more errors after
to use
`EXPECT_*`
when you want the test to continue to reveal more errors after
the assertion failure, and use
`ASSERT_*`
when continuing after failure doesn't
the assertion failure, and use
`ASSERT_*`
when continuing after failure doesn't
make sense. For example, the second assertion in the
`Dequeue`
test is
make sense. For example, the second assertion in the
`Dequeue`
test is
`ASSERT_NE(n
ullptr, n
)`
, as we need to dereference the pointer
`n`
later, which
`ASSERT_NE(n
, nullptr
)`
, as we need to dereference the pointer
`n`
later, which
would lead to a segfault when
`n`
is
`NULL`
.
would lead to a segfault when
`n`
is
`NULL`
.
When these tests run, the following happens:
When these tests run, the following happens:
...
...
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