| 93 | }; |
| 94 | |
| 95 | TEST_F(ReaderTest, beginCharStreamNormal) |
| 96 | { |
| 97 | // Arrange |
| 98 | ReaderXML xml; |
| 99 | xml.givenDataAsXMLStream("<data>Test ASCII data</data>"); |
| 100 | xml.Reader()->readElement("data"); |
| 101 | |
| 102 | // Act |
| 103 | auto& result = xml.Reader()->beginCharStream(); |
| 104 | |
| 105 | // Assert |
| 106 | EXPECT_TRUE(result.good()); |
| 107 | } |
| 108 | |
| 109 | TEST_F(ReaderTest, beginCharStreamOpenClose) |
| 110 | { |
nothing calls this directly
no test coverage detected