CSVTools Tests
This commit is contained in:
parent
f37e5596f0
commit
481a59afbc
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class CSVToolsTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void readCSVFromURL_invalid() {
|
void readCSVFromURL_invalid() {
|
||||||
assertThrowsExactly(IOException.class,() -> {
|
assertThrows(IOException.class,() -> {
|
||||||
Consumer<String[]> test = s -> System.out.println(Arrays.toString(s));
|
Consumer<String[]> test = s -> System.out.println(Arrays.toString(s));
|
||||||
CSVTools.readCSVFromURL("https://google.fr",
|
CSVTools.readCSVFromURL("https://google.fr",
|
||||||
test);
|
test);
|
||||||
|
|
Reference in a new issue