We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57576ac commit 709da2eCopy full SHA for 709da2e
stroom-proxy/stroom-proxy-app/src/test/java/stroom/proxy/app/handler/TestDirUtil.java
@@ -212,6 +212,8 @@ Stream<DynamicTest> testCreatePath(@TempDir Path dir) {
212
.addCase(1_999L, Path.of("1/001/001999"))
213
.addCase(999_999L, Path.of("1/999/999999"))
214
.addCase(1_000_000L, Path.of("2/001/000/001000000"))
215
+ .addCase(12_345_000L, Path.of("2/012/345/012345000"))
216
+ .addCase(12_345_678L, Path.of("2/012/345/012345678"))
217
.addCase(333_555_777L, Path.of("2/333/555/333555777"))
218
.addCase(Long.MAX_VALUE, Path.of("6/009/223/372/036/854/775/009223372036854775807"))
219
.withActualOutputConsumer(LOGGER::info)
0 commit comments