()
| 43 | } |
| 44 | |
| 45 | @Test |
| 46 | public void offsetOneDay() { |
| 47 | AdjustableClock clock = |
| 48 | AdjustableClock.of(SystemClock.INSTANCE).withOffset(1, DAYS); |
| 49 | PlainDate tomorrow = |
| 50 | SystemClock.inLocalView().today().plus(1, CalendarUnit.DAYS); |
| 51 | assertThat(clock.inLocalView().today(), is(tomorrow)); |
| 52 | } |
| 53 | |
| 54 | @Test |
| 55 | public void pulsedMicros() { |
nothing calls this directly
no test coverage detected