(b *testing.B)
| 106 | } |
| 107 | |
| 108 | func Benchmark_AddCurrentRequestCount_1(b *testing.B) { |
| 109 | var num uint64 = 1 |
| 110 | for i := 0; i < b.N; i++ { |
| 111 | GlobalState.AddCurrentRequest(num) |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | func Benchmark_AddRequestCount_Parallel(b *testing.B) { |
| 116 | b.RunParallel(func(pb *testing.PB) { |
nothing calls this directly
no test coverage detected