| 40 | } |
| 41 | }; |
| 42 | TEST(StringifyStreamTest, AppendNChars) { |
| 43 | std::ostringstream os; |
| 44 | StringifyStream(os) << AppendNCharsTest{5, 'a'}; |
| 45 | EXPECT_EQ(os.str(), "aaaaa"); |
| 46 | } |
| 47 | |
| 48 | // Exercises the Append(absl::string_view) overload |
| 49 | struct AppendStringViewTest { |
nothing calls this directly
no test coverage detected