diff options
author | Oleksandr Yefremov <Oleksandr.Yefremov@gmail.com> | 2019-11-27 08:30:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-27 08:30:03 (GMT) |
commit | b8a92f7c86e4bb686bc47bef6dba418b3588e964 (patch) | |
tree | 2ce173474ee5a902aca924373af2e0ea556d35d4 | |
parent | 34e92be31cf457ad4054b7908ee5e0e214dbcddc (diff) | |
download | googletest-b8a92f7c86e4bb686bc47bef6dba418b3588e964.zip googletest-b8a92f7c86e4bb686bc47bef6dba418b3588e964.tar.gz googletest-b8a92f7c86e4bb686bc47bef6dba418b3588e964.tar.bz2 |
Rename test case to test suiterefs/pull/2607/head
-rw-r--r-- | googletest/docs/primer.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md index 63f0516..f581d77 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. |