()
| 14 | } |
| 15 | |
| 16 | public static Clock systemDefaultZone() { |
| 17 | return new SystemClock(ZoneId.systemDefault()); |
| 18 | } |
| 19 | |
| 20 | public static Clock fixed(Instant fixedInstant, ZoneId zone) { |
| 21 | return new FixedClock(fixedInstant, zone); |
no test coverage detected