mirror of
https://github.com/PuerkitoBio/goquery
synced 2025-10-05 08:46:53 +08:00
12 lines
133 B
Go
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")
|
|
}
|
|
}
|