We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a90b85 commit 0a74c41Copy full SHA for 0a74c41
1 file changed
jjava-jupyter/src/test/java/org/dflib/jjava/jupyter/kernel/util/PathsHandlerTest.java
@@ -13,17 +13,17 @@
13
14
import static org.junit.jupiter.api.Assertions.assertEquals;
15
16
-class PathsHandlerTest {
+public class PathsHandlerTest {
17
18
@Test
19
- void testSpit() {
+ public void testSpit() {
20
assertEquals(List.of(), PathsHandler.split(""));
21
assertEquals(List.of("a"), PathsHandler.split("a"));
22
assertEquals(List.of("a", "b/c/d"), PathsHandler.split("a" + File.pathSeparator + "b/c/d"));
23
}
24
25
26
- void testSpitAndResolveGlobs(@TempDir Path dir) throws IOException {
+ public void testSpitAndResolveGlobs(@TempDir Path dir) throws IOException {
27
28
Files.createFile(dir.resolve("a1.txt"));
29
Files.createFile(dir.resolve("a2.txt"));
0 commit comments