()
| 13 | static List<String> parts = |
| 14 | Arrays.asList("foo", "bar", "baz", "bag"); |
| 15 | static Path makeVariant() { |
| 16 | Collections.rotate(parts, 1); |
| 17 | return Paths.get("test", String.join(sep, parts)); |
| 18 | } |
| 19 | static void refreshTestDir() throws Exception { |
| 20 | if(Files.exists(test)) |
| 21 | RmDir.rmdir(test); |
no test coverage detected