Merge f252081fb5745ce6c5d410b28baa207d74a90349 into 7140cd416cecd7462a8aae488024abeee55598e4

This commit is contained in:
Shruti1128 2026-06-02 21:56:22 -04:00 committed by GitHub
commit 9a33c6b6b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1233,9 +1233,11 @@ returns the value of `testing::PrintToString(GetParam())`. It does not work for
`std::string` or C strings.
{: .callout .note}
NOTE: test names must be non-empty, unique, and may only contain ASCII
alphanumeric characters. In particular, they
[should not contain underscores](faq.md#why-should-test-suite-names-and-test-names-not-contain-underscore)
NOTE: test names must be non-empty, unique,
and may only contain ASCII
alphanumeric characters and underscores.
```c++
class MyTestSuite : public testing::TestWithParam<int> {};