(b *testing.B)
| 70 | } |
| 71 | |
| 72 | func BenchmarkNewCache(b *testing.B) { |
| 73 | for i := 0; i < b.N; i++ { |
| 74 | NewCache() |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | func BenchmarkNewCacheAndClear(b *testing.B) { |
| 79 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected