(b *testing.B)
| 206 | } |
| 207 | |
| 208 | func BenchmarkSyncMap_WithValue(b *testing.B) { |
| 209 | someVal := []byte{1, 2, 3} |
| 210 | |
| 211 | benchmarkSyncMap(b, someVal) |
| 212 | } |
| 213 | |
| 214 | //nolint:thelper |
| 215 | func benchmarkSyncMap(b *testing.B, someVal []byte) { |
nothing calls this directly
no test coverage detected