| 11 | typedef HandlerTest GenEmitterTest; |
| 12 | |
| 13 | TEST_F(GenEmitterTest, testf2a8b6e6359fb2c30830) { |
| 14 | Emitter out; |
| 15 | out << Comment("comment"); |
| 16 | out << BeginDoc; |
| 17 | out << "foo"; |
| 18 | out << EndDoc; |
| 19 | |
| 20 | EXPECT_CALL(handler, OnDocumentStart(_)); |
| 21 | EXPECT_CALL(handler, OnScalar(_, "?", 0, "foo")); |
| 22 | EXPECT_CALL(handler, OnDocumentEnd()); |
| 23 | Parse(out.c_str()); |
| 24 | } |
| 25 | |
| 26 | TEST_F(GenEmitterTest, testa2c9c04eab06a05bf1a3) { |
| 27 | Emitter out; |
nothing calls this directly
no test coverage detected