(b *testing.B)
| 215 | } |
| 216 | |
| 217 | func BenchmarkRuntimeStore_SessionCount_1(b *testing.B) { |
| 218 | for i := 0; i < b.N; i++ { |
| 219 | runtime_store.SessionCount() |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | func BenchmarkRuntimeStore_SessionCount_Parallel(b *testing.B) { |
| 224 | b.RunParallel(func(pb *testing.PB) { |
nothing calls this directly
no test coverage detected