(c *C)
| 20 | } |
| 21 | |
| 22 | func (s *ParserSuite) TestNewParserFromString(c *C) { |
| 23 | p := NewParserFromString("test") |
| 24 | |
| 25 | c.Assert(p, FitsTypeOf, &Parser{}) |
| 26 | } |
| 27 | |
| 28 | func (s *ParserSuite) TestScan(c *C) { |
| 29 | parser := NewParser(bytes.NewBufferString("Hello world !")) |
nothing calls this directly
no test coverage detected