diff options
author | Sebastian Krämer <sebkraemer@posteo.org> | 2021-04-15 20:11:23 (GMT) |
---|---|---|
committer | Sebastian Krämer <sebkraemer@posteo.org> | 2021-04-15 20:28:41 (GMT) |
commit | 1de97fd1c32e5eb4ff111b4e033a9e9aa848430f (patch) | |
tree | f8590633ac8a388cfeffcdff25a6649113ccb9f6 /docs | |
parent | c4ed56eb75b1c1f9d1fc7e98f8c9724bb73e2442 (diff) | |
download | googletest-1de97fd1c32e5eb4ff111b4e033a9e9aa848430f.zip googletest-1de97fd1c32e5eb4ff111b4e033a9e9aa848430f.tar.gz googletest-1de97fd1c32e5eb4ff111b4e033a9e9aa848430f.tar.bz2 |
Apply suggestions from code review for GTEST_SKIP documentation
Extended example and some rewording by @ericschmidtatwork, thank you.
Co-authored-by: Eric Schmidt <shibumi@google.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/advanced.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/advanced.md b/docs/advanced.md index da7cf07..9b44a58 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 |