(b *testing.B)
| 345 | } |
| 346 | |
| 347 | func BenchmarkParse(b *testing.B) { |
| 348 | for i := 0; i != b.N; i++ { |
| 349 | Parse(maxStringEncoded) |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | func BenchmarkCompare(b *testing.B) { |
| 354 | k1 := New() |
nothing calls this directly
no test coverage detected
searching dependent graphs…