(b *testing.B)
| 423 | } |
| 424 | |
| 425 | func BenchmarkTextParse(b *testing.B) { |
| 426 | for i := 0; i < b.N; i++ { |
| 427 | testTextParse(b) |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | func testTextParseError(t testing.TB) { |
| 432 | scenarios := []struct { |
nothing calls this directly
no test coverage detected