| 1 | import utils.Timer; |
| 2 | |
| 3 | public class TestTimer extends Timer { |
| 4 | private long currentTime = System.currentTimeMillis(); |
| 5 | |
| 6 | @Override |
| 7 | public long getCurrentTimeInMillis() { |
| 8 | return currentTime; |
| 9 | } |
| 10 | |
| 11 | public void setTime(final long currentTime) { |
| 12 | this.currentTime = currentTime; |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected