| 25 | namespace { |
| 26 | |
| 27 | TEST(AppendTest, SingleLineText) { |
| 28 | SourceBufferWriter writer; |
| 29 | writer.Append("You say goodbye and I say hello!"); |
| 30 | |
| 31 | const char* expected = "You say goodbye and I say hello!"; |
| 32 | ASSERT_STREQ(expected, writer.str().data()); |
| 33 | } |
| 34 | |
| 35 | TEST(AppendTest, MultiLineText) { |
| 36 | SourceBufferWriter writer; |
nothing calls this directly
no test coverage detected