| 12 | class HandlerTest : public ::testing::Test { |
| 13 | protected: |
| 14 | void Parse(const std::string& example) { |
| 15 | std::stringstream stream(example); |
| 16 | Parser parser(stream); |
| 17 | while (parser.HandleNextDocument(handler)) { |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | void IgnoreParse(const std::string& example) { |
| 22 | std::stringstream stream(example); |
nothing calls this directly
no test coverage detected