| 19 | } |
| 20 | |
| 21 | void IgnoreParse(const std::string& example) { |
| 22 | std::stringstream stream(example); |
| 23 | Parser parser(stream); |
| 24 | while (parser.HandleNextDocument(nice_handler)) { |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | InSequence sequence; |
| 29 | StrictMock<MockEventHandler> handler; |
nothing calls this directly
no test coverage detected