diff options
author | Abseil Team <absl-team@google.com> | 2024-04-10 08:02:58 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-04-10 08:03:53 (GMT) |
commit | b1a777f31913f8a047f43b2a5f823e736e7f5082 (patch) | |
tree | 9279a580bc5d1df5e70b7b58476c0de4ddfbea3a | |
parent | 3d73dee972d0db344bda9b659836612aba6a3564 (diff) | |
download | googletest-b1a777f31913f8a047f43b2a5f823e736e7f5082.zip googletest-b1a777f31913f8a047f43b2a5f823e736e7f5082.tar.gz googletest-b1a777f31913f8a047f43b2a5f823e736e7f5082.tar.bz2 |
Fix https://github.com/google/googletest/issues/4423
PiperOrigin-RevId: 623407029
Change-Id: I3559f11e1c18a4f151d521c6ac115c358a11b40c
-rw-r--r-- | docs/reference/testing.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/reference/testing.md b/docs/reference/testing.md index 81640fd..c93556e 100644 --- a/docs/reference/testing.md +++ b/docs/reference/testing.md @@ -94,7 +94,8 @@ Instantiates the value-parameterized test suite *`TestSuiteName`* (defined with The argument *`InstantiationName`* is a unique name for the instantiation of the test suite, to distinguish between multiple instantiations. In test output, the instantiation name is added as a prefix to the test suite name -*`TestSuiteName`*. +*`TestSuiteName`*. If *`InstantiationName`* is empty +(`INSTANTIATE_TEST_SUITE_P(, ...)`), no prefix is added. The argument *`param_generator`* is one of the following GoogleTest-provided functions that generate the test parameters, all defined in the `::testing` @@ -277,7 +278,8 @@ must be registered with The argument *`InstantiationName`* is a unique name for the instantiation of the test suite, to distinguish between multiple instantiations. In test output, the instantiation name is added as a prefix to the test suite name -*`TestSuiteName`*. +*`TestSuiteName`*. If *`InstantiationName`* is empty +(`INSTANTIATE_TYPED_TEST_SUITE_P(, ...)`), no prefix is added. The argument *`Types`* is a [`Types`](#Types) object representing the list of types to run the tests on, for example: |