(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func Test_CurrentRequestCount(t *testing.T) { |
| 39 | //var num uint64 = 1 |
| 40 | GlobalState.AddCurrentRequest(1000465) |
| 41 | t.Log(GlobalState.CurrentRequestCount) |
| 42 | GlobalState.SubCurrentRequest(2561) |
| 43 | t.Log(GlobalState.CurrentRequestCount) |
| 44 | } |
| 45 | |
| 46 | func Test_AddRequestCount_2(t *testing.T) { |
| 47 | var num uint64 = 1 |
nothing calls this directly
no test coverage detected