()
| 35 | class UtilTest { |
| 36 | |
| 37 | @Test |
| 38 | void testSleep() { |
| 39 | // Windows counters may be up to 1/64 second (16ms) off |
| 40 | long now = System.nanoTime(); |
| 41 | Util.sleep(100); |
| 42 | assertThat(System.nanoTime() - now, is(greaterThan(84_375_000L))); |
| 43 | } |
| 44 | |
| 45 | @Test |
| 46 | void testWildcardMatch() { |
nothing calls this directly
no test coverage detected