blob: e380046180b90e8692b0f7d6770eedd20d8c5d37 [file] [log] [blame]
package fallback
import "testing"
// BenchmarkInitTime benchmarks the time it takes to parse all certificates
// in this bundle, it corresponds to the init time of this package.
func BenchmarkInitTime(b *testing.B) {
for range b.N {
newFallbackCertPool()
}
}