(b *testing.B)
| 1358 | } |
| 1359 | |
| 1360 | func BenchmarkValid(b *testing.B) { |
| 1361 | for i := 0; i < b.N; i++ { |
| 1362 | Valid(complicatedJSON) |
| 1363 | } |
| 1364 | } |
| 1365 | |
| 1366 | func BenchmarkValidBytes(b *testing.B) { |
| 1367 | complicatedJSON := []byte(complicatedJSON) |
nothing calls this directly
no test coverage detected
searching dependent graphs…