Files
goquery/bench_traversal_test.go
2012-09-11 11:00:14 -04:00

12 lines
133 B
Go

package goquery
import (
"testing"
)
func BenchmarkFind(b *testing.B) {
for i := 0; i < b.N; i++ {
DocB().Root.Find("dd")
}
}