mirror of
https://github.com/google/googletest.git
synced 2025-04-06 05:55:04 +00:00
Adds instructions on accessing command line flags in code.
This commit is contained in:
parent
6629501806
commit
deab401ff7
1 changed files with 17 additions and 2 deletions
|
@ -1330,8 +1330,23 @@ them directly and affect their behavior via the following environment variables
|
|||
and/or command line flags. For the flags to work, your programs must call
|
||||
`testing::InitGoogleTest()` before calling `RUN_ALL_TESTS()`.
|
||||
|
||||
If an option is specified both by an environment variable and by a flag, the
|
||||
latter takes precedence.
|
||||
If an option is specified both by an environment variable and by a
|
||||
flag, the latter takes precedence. Most of the options can also be
|
||||
set/read in code: to access the value of command line flag
|
||||
`--gtest_foo`, write `testing::GTEST_FLAG(foo)`. A common pattern is
|
||||
to set the value of a flag before calling `testing::InitGoogleTest()`
|
||||
to change the default value of the flag:
|
||||
{{{
|
||||
int main(int argc, char** argv) {
|
||||
// Prints elapsed time by default.
|
||||
testing::GTEST_FLAG(print_time) = true;
|
||||
|
||||
// This allows the user to override the flag on the command line.
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
}}}
|
||||
|
||||
== Turning Assertion Failures into Break-Points ==
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue