blob: 768817900547c3762f64d1595f5ee8463bff380d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package file
import (
"strings"
"testing"
)
func BenchmarkParseInsert(b *testing.B) {
for i := 0; i < b.N; i++ {
Parse(strings.NewReader(dbMiekENTNL), testzone, "stdin")
}
}
|