(b *testing.B)
| 221 | } |
| 222 | |
| 223 | func BenchmarkRuntimeStore_SessionCount_Parallel(b *testing.B) { |
| 224 | b.RunParallel(func(pb *testing.PB) { |
| 225 | for pb.Next() { |
| 226 | runtime_store.SessionCount() |
| 227 | } |
| 228 | }) |
| 229 | b.ReportAllocs() |
| 230 | } |
| 231 | |
| 232 | func BenchmarkRuntimeStore_SessionRemove_1(b *testing.B) { |
| 233 | // Empty benchmark |
nothing calls this directly
no test coverage detected