aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleksandr Yefremov <Oleksandr.Yefremov@gmail.com>2019-11-27 10:30:03 +0200
committerGitHub <noreply@github.com>2019-11-27 10:30:03 +0200
commitb8a92f7c86e4bb686bc47bef6dba418b3588e964 (patch)
tree2ce173474ee5a902aca924373af2e0ea556d35d4
parent34e92be31cf457ad4054b7908ee5e0e214dbcddc (diff)
downloadgoogletest-b8a92f7c86e4bb686bc47bef6dba418b3588e964.tar.gz
googletest-b8a92f7c86e4bb686bc47bef6dba418b3588e964.tar.bz2
googletest-b8a92f7c86e4bb686bc47bef6dba418b3588e964.zip
Rename test case to test suite
-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 63f05168..f581d77a 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -261,7 +261,7 @@ TEST(TestSuiteName, TestName) {
`TEST()` arguments go from general to specific. The *first* argument is the name
of the test suite, and the *second* argument is the test's name within the test
-case. Both names must be valid C++ identifiers, and they should not contain
+suite. Both names must be valid C++ identifiers, and they should not contain
any underscores (`_`). A test's *full name* consists of its containing test suite and
its individual name. Tests from different test suites can have the same
individual name.