()
| 80 | } |
| 81 | |
| 82 | @Test |
| 83 | public void pulsedHours() { |
| 84 | AdjustableClock clock = |
| 85 | AdjustableClock.of(SystemClock.INSTANCE).withPulse(HOURS); |
| 86 | assertThat(clock.currentTime().getPosixTime() % 3600, is(0L)); |
| 87 | } |
| 88 | |
| 89 | @Test |
| 90 | public void pulsedDays() { |
nothing calls this directly
no test coverage detected