diff options
author | Sebastian Krämer <sebkraemer@posteo.org> | 2021-04-15 20:26:14 (GMT) |
---|---|---|
committer | Sebastian Krämer <sebkraemer@posteo.org> | 2021-04-15 20:28:41 (GMT) |
commit | 124e87a3038a34e0761fe5f96c06ace1f7b2442a (patch) | |
tree | 7272a28be5f85b33c6ebeec75b0a54493940b5f6 /docs | |
parent | 1de97fd1c32e5eb4ff111b4e033a9e9aa848430f (diff) | |
download | googletest-124e87a3038a34e0761fe5f96c06ace1f7b2442a.zip googletest-124e87a3038a34e0761fe5f96c06ace1f7b2442a.tar.gz googletest-124e87a3038a34e0761fe5f96c06ace1f7b2442a.tar.bz2 |
Apply missing suggestions from code review for GTEST_SKIPrefs/pull/3174/head
Co-authored-by: Eric Schmidt <shibumi@google.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/advanced.md | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/docs/advanced.md b/docs/advanced.md index 9b44a58..6c1d1a9 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -529,25 +529,31 @@ partially-destructed state! You almost certainly want to `abort` or use ## Skipping test execution -Related to pseudo assertions `SUCCEED()` and `FAIL()` you can prevent further test -execution with the `GTEST_SKIP()` macro. +Related to the assertions `SUCCEED()` and `FAIL()`, you can prevent further test +execution at runtime with the `GTEST_SKIP()` macro. This is useful when you need +to check for preconditions of the system under test during runtime and skip tests +in a meaningful way. -`GTEST_SKIP` can be used in test cases or in `SetUp()` methods of classes inherited -from either `::testing::Environment` or `::testing::Test`. The latter is a convenient -way to check for preconditions of the system under test during runtime and skip -the test in a meaningful way. +`GTEST_SKIP()` can be used in individual test cases or in the `SetUp()` methods of +classes derived from either `::testing::Environment` or `::testing::Test`. For +example: -Based on googletest's own test code: ```c++ -class Fixture : public Test { +TEST(SkipTest, DoesSkip) { + GTEST_SKIP() << "Skipping single test"; + EXPECT_EQ(0, 1); // Won't fail; it won't be executed +} + +class SkipFixture : public ::testing::Test { protected: void SetUp() override { - GTEST_SKIP() << "skipping all tests for this fixture"; + GTEST_SKIP() << "Skipping all tests for this fixture"; } }; -TEST_F(Fixture, SkipsOneTest) { - EXPECT_EQ(5, 7); // won't fail, it won't get executed +// Tests for SkipFixture won't be executed. +TEST_F(SkipFixture, SkipsOneTest) { + EXPECT_EQ(5, 7); // Won't fail } ``` |