| 13 | class MockTimer : public braft::RepeatedTimerTask { |
| 14 | protected: |
| 15 | MockTimer() |
| 16 | : _blocking(false) |
| 17 | , _run_times(0) |
| 18 | , _on_destroy_times(0) |
| 19 | , _adjust_timeout_times(0) |
| 20 | {} |
| 21 | ~MockTimer() { destroy(); } |
| 22 | |
| 23 | void run() { |
nothing calls this directly
no outgoing calls
no test coverage detected