aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-02-23 10:17:05 -0500
committerGitHub <noreply@github.com>2018-02-23 10:17:05 -0500
commit70e1aad72c4980039ae6835abd4fb2bc9dde7031 (patch)
treea7bc73af6a01397584c3bdddee10cdbc4dde6d6f
parenta490fb7a9a00d62e03d84e85e3e07ed127a21ef8 (diff)
parent99bb4fe85a20a05535104330d31beac7e994be5c (diff)
downloadgoogletest-70e1aad72c4980039ae6835abd4fb2bc9dde7031.tar.gz
googletest-70e1aad72c4980039ae6835abd4fb2bc9dde7031.tar.bz2
googletest-70e1aad72c4980039ae6835abd4fb2bc9dde7031.zip
Merge pull request #1471 from aleksejkozin/patch-1
TEST() arguments are invalid in an example
-rw-r--r--googletest/docs/Primer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/Primer.md b/googletest/docs/Primer.md
index 384d4d6e..5e8ee0c6 100644
--- a/googletest/docs/Primer.md
+++ b/googletest/docs/Primer.md
@@ -239,7 +239,7 @@ To create a test:
1. The test's result is determined by the assertions; if any assertion in the test fails (either fatally or non-fatally), or if the test crashes, the entire test fails. Otherwise, it succeeds.
```
-TEST(test_case_name, test_name) {
+TEST(testCaseName, testName) {
... test body ...
}
```