diff options
author | Abseil Team <absl-team@google.com> | 2021-02-12 17:19:16 (GMT) |
---|---|---|
committer | Derek Mauro <dmauro@google.com> | 2021-02-18 18:26:48 (GMT) |
commit | bc32a874522a3b1631b664952a9887d45d44b573 (patch) | |
tree | 741958261cbb60fac7cfdf9eed7b80922279e12e /docs | |
parent | 1a5a78b9a9c6c285a7897a411cb96bb2ab36d277 (diff) | |
download | googletest-bc32a874522a3b1631b664952a9887d45d44b573.zip googletest-bc32a874522a3b1631b664952a9887d45d44b573.tar.gz googletest-bc32a874522a3b1631b664952a9887d45d44b573.tar.bz2 |
Googletest export
Update the custom name example to not use underscores.
The NOTE a few blocks above specifically calls out that test names should not contain undersccores, so probably the example should not suggest using underscores.
PiperOrigin-RevId: 357204578
Diffstat (limited to 'docs')
-rw-r--r-- | docs/advanced.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/advanced.md b/docs/advanced.md index 9b3cf5a..49f7f54 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -1489,12 +1489,12 @@ INSTANTIATE_TEST_SUITE_P( MyGroup, MyTestSuite, testing::Combine( testing::Values(MyType::VALUE_0, MyType::VALUE_1), - testing::ValuesIn("", "")), + testing::Values("A", "B")), [](const testing::TestParamInfo<MyTestSuite::ParamType>& info) { std::string name = absl::StrCat( - std::get<0>(info.param) == MY_FOO ? "Foo" : "Bar", "_", + std::get<0>(info.param) == MY_FOO ? "Foo" : "Bar", std::get<1>(info.param)); - absl::c_replace_if(name, [](char c) { return !std::isalnum(c); }, '_'); + absl::c_replace_if(name, [](char c) { return !std::isalnum(c); }, ''); return name; }); ``` |