Skip to content

Commit 942d2bf

Browse files
committed
Add a dummy test
1 parent 4072712 commit 942d2bf

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package org.eclipse.lsp4e.test;
2+
3+
4+
import static org.junit.jupiter.api.Assertions.assertNotNull;
5+
6+
import java.net.URI;
7+
import java.nio.file.Paths;
8+
9+
import org.junit.jupiter.api.Test;
10+
11+
public class PathsTest {
12+
13+
@Test
14+
void nonAscii() throws Exception {
15+
URI uri = URI.create("file:///fooß.txt");
16+
assertNotNull( Paths.get(uri));
17+
}
18+
19+
}

0 commit comments

Comments
 (0)