(b *testing.B)
| 157 | } |
| 158 | |
| 159 | func BenchmarkMapWithAtomicFastpath(b *testing.B) { |
| 160 | benchmarkIncrementUint64Map(b, newMapWithAtomicFastpath) |
| 161 | } |
| 162 | |
| 163 | func BenchmarkMapWithSyncMap(b *testing.B) { |
| 164 | benchmarkIncrementUint64Map(b, newMapWithSyncMap) |
nothing calls this directly
no test coverage detected