(b *testing.B)
| 164 | ) |
| 165 | |
| 166 | func BenchmarkHasPrefix(b *testing.B) { |
| 167 | for range b.N { |
| 168 | benchmarkHasPrefixResult = hasPrefix(benchmarkHasPrefixString, "null") |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | func BenchmarkHasNullPrefix(b *testing.B) { |
| 173 | for range b.N { |
nothing calls this directly
no test coverage detected
searching dependent graphs…