Files
coredns/middleware/file/file_test.go

13 lines
182 B
Go
Raw Normal View History

2016-03-18 20:57:35 +00:00
package file
import (
"strings"
"testing"
)
func BenchmarkParseInsert(b *testing.B) {
for i := 0; i < b.N; i++ {
Parse(strings.NewReader(dbMiekENTNL), testzone, "stdin")
}
}