(b *testing.B)
| 663 | } |
| 664 | |
| 665 | func BenchmarkParseError(b *testing.B) { |
| 666 | for i := 0; i < b.N; i++ { |
| 667 | testTextParseError(b) |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | func TestTextParserStartOfLine(t *testing.T) { |
| 672 | t.Run("EOF", func(t *testing.T) { |
nothing calls this directly
no test coverage detected