(b *testing.B)
| 202 | } |
| 203 | |
| 204 | func BenchmarkSyncMap_NoValue(b *testing.B) { |
| 205 | benchmarkSyncMap(b, []byte{}) |
| 206 | } |
| 207 | |
| 208 | func BenchmarkSyncMap_WithValue(b *testing.B) { |
| 209 | someVal := []byte{1, 2, 3} |
nothing calls this directly
no test coverage detected