(b *testing.B)
| 170 | } |
| 171 | |
| 172 | func BenchmarkHasNullPrefix(b *testing.B) { |
| 173 | for range b.N { |
| 174 | benchmarkHasPrefixResult = hasNullPrefix(benchmarkHasPrefixString) |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | func BenchmarkHasTruePrefix(b *testing.B) { |
| 179 | for range b.N { |
nothing calls this directly
no test coverage detected
searching dependent graphs…