(t *testing.T)
| 39 | eventtimer.CancelTimer(1) |
| 40 | } |
| 41 | func TestStartEventTimer(t *testing.T) { |
| 42 | eventtimer := constructEventTimer() |
| 43 | err := eventtimer.startEventTimer(EventProposeBlockTimeout, 1) |
| 44 | t.Logf("TestStartEventTimer: %v", err) |
| 45 | } |
| 46 | |
| 47 | func TestCancelEventTimer(t *testing.T) { |
| 48 | eventtimer := constructEventTimer() |
nothing calls this directly
no test coverage detected