aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-08-30 08:47:10 -0400
committerGitHub <noreply@github.com>2017-08-30 08:47:10 -0400
commit5d431c650f9c4d0aefdcca72d4b950ea8f0214ac (patch)
treef956a8b93f52d2880e50e68a3037bf9af41f5c4f
parent71e2858f32902ca736e2dc8d81b512a4dfa18b80 (diff)
parentf0c72bfe09af0c5b6d48eb48456e2c4fca8858d7 (diff)
downloadgoogletest-5d431c650f9c4d0aefdcca72d4b950ea8f0214ac.tar.gz
googletest-5d431c650f9c4d0aefdcca72d4b950ea8f0214ac.tar.bz2
googletest-5d431c650f9c4d0aefdcca72d4b950ea8f0214ac.zip
Merge pull request #1236 from aninf-wo/hethi/issue-1087-fix-advancedguide
fix SetUp/TearDownTestCase() in AdvancedGuide
-rw-r--r--googletest/docs/AdvancedGuide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/docs/AdvancedGuide.md b/googletest/docs/AdvancedGuide.md
index a454bf45..1076496d 100644
--- a/googletest/docs/AdvancedGuide.md
+++ b/googletest/docs/AdvancedGuide.md
@@ -1623,8 +1623,8 @@ printf("We are in test %s of test case %s.\n",
```
`current_test_info()` returns a null pointer if no test is running. In
-particular, you cannot find the test case name in `TestCaseSetUp()`,
-`TestCaseTearDown()` (where you know the test case name implicitly), or
+particular, you cannot find the test case name in `SetUpTestCase()`,
+`TearDownTestCase()` (where you know the test case name implicitly), or
functions called from them.
_Availability:_ Linux, Windows, Mac.