(b *testing.B)
| 1559 | } |
| 1560 | |
| 1561 | func BenchmarkCacheGetManyConcurrentNotExpiring(b *testing.B) { |
| 1562 | benchmarkCacheGetManyConcurrent(b, NoExpiration) |
| 1563 | } |
| 1564 | |
| 1565 | func benchmarkCacheGetManyConcurrent(b *testing.B, exp time.Duration) { |
| 1566 | // This is the same as BenchmarkCacheGetConcurrent, but its result |
nothing calls this directly
no test coverage detected