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
66836f0a
Commit
66836f0a
authored
Mar 24, 2021
by
Abseil Team
Committed by
Dino Radaković
Mar 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Googletest export
Minor formatting updates PiperOrigin-RevId: 364935205
parent
6dabd081
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
faq.md
docs/faq.md
+4
-4
No files found.
docs/faq.md
View file @
66836f0a
...
...
@@ -706,12 +706,12 @@ whether the code is under test.
## How do I temporarily disable a test?
If you have a broken test that you cannot fix right away, you can add the
DISABLED_
prefix to its name. This will exclude it from execution. This is
better than commenting out the code or using
#if 0, as disabled tests are still
compiled (and thus won't rot).
`DISABLED_`
prefix to its name. This will exclude it from execution. This is
better than commenting out the code or using
`#if 0`
, as disabled tests are
still
compiled (and thus won't rot).
To include disabled tests in test execution, just invoke the test program with
the
--gtest_also_run_disabled_tests
flag.
the
`--gtest_also_run_disabled_tests`
flag.
## Is it OK if I have two separate `TEST(Foo, Bar)` test methods defined in different namespaces?
...
...
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