(t *testing.T)
| 34 | } |
| 35 | |
| 36 | func TestCancelTimer(t *testing.T) { |
| 37 | eventtimer := constructEventTimer() |
| 38 | eventtimer.StartTimer(1, 10) |
| 39 | eventtimer.CancelTimer(1) |
| 40 | } |
| 41 | func TestStartEventTimer(t *testing.T) { |
| 42 | eventtimer := constructEventTimer() |
| 43 | err := eventtimer.startEventTimer(EventProposeBlockTimeout, 1) |
nothing calls this directly
no test coverage detected