()
| 73 | } |
| 74 | |
| 75 | @Test |
| 76 | public void pulsedMinutes() { |
| 77 | AdjustableClock clock = |
| 78 | AdjustableClock.of(SystemClock.INSTANCE).withPulse(MINUTES); |
| 79 | assertThat(clock.currentTime().getPosixTime() % 60, is(0L)); |
| 80 | } |
| 81 | |
| 82 | @Test |
| 83 | public void pulsedHours() { |
nothing calls this directly
no test coverage detected