(b *testing.B)
| 113 | } |
| 114 | |
| 115 | func Benchmark_AddRequestCount_Parallel(b *testing.B) { |
| 116 | b.RunParallel(func(pb *testing.PB) { |
| 117 | var num uint64 = 1 |
| 118 | for pb.Next() { |
| 119 | GlobalState.AddRequestCount("test", 200, num) |
| 120 | } |
| 121 | }) |
| 122 | } |
nothing calls this directly
no test coverage detected