From 1de97fd1c32e5eb4ff111b4e033a9e9aa848430f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=A4mer?= Date: Thu, 15 Apr 2021 22:11:23 +0200 Subject: [PATCH] Apply suggestions from code review for GTEST_SKIP documentation Extended example and some rewording by @ericschmidtatwork, thank you. Co-authored-by: Eric Schmidt --- docs/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced.md b/docs/advanced.md index da7cf079..9b44a582 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -551,7 +551,7 @@ TEST_F(Fixture, SkipsOneTest) { } ``` -The informational text is optional. +As with assertion macros, you can stream a custom message into `GTEST_SKIP()`. ## Teaching googletest How to Print Your Values