(b *testing.B)
| 182 | } |
| 183 | |
| 184 | func BenchmarkHasFalsePrefix(b *testing.B) { |
| 185 | for range b.N { |
| 186 | benchmarkHasPrefixResult = hasFalsePrefix(benchmarkHasPrefixString) |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | func BenchmarkParseStringEscapeNone(b *testing.B) { |
| 191 | j := []byte(`"` + strings.Repeat(`a`, 1000) + `"`) |
nothing calls this directly
no test coverage detected
searching dependent graphs…