(b *testing.B)
| 675 | } |
| 676 | |
| 677 | func BenchmarkParseBytesCopy(b *testing.B) { |
| 678 | for i := 0; i < b.N; i++ { |
| 679 | _, err := parseBytesCopy(asBytes) |
| 680 | if err != nil { |
| 681 | b.Fatal(err) |
| 682 | } |
| 683 | } |
| 684 | } |
| 685 | |
| 686 | func BenchmarkNew(b *testing.B) { |
| 687 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected