This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ProjetGenieLogicielLoto/src/test/java/fr/myny/data/DataCsvTest.java
2021-02-01 18:28:49 +01:00

18 lines
No EOL
428 B
Java

package fr.myny.data;
import org.junit.jupiter.api.Test;
import java.io.File;
import java.io.IOException;
import static org.junit.jupiter.api.Assertions.*;
class DataCsvTest {
@Test
void getCSV() throws IOException {
DataCsv csv = new DataCsv();
csv.getCsv("src/main/resources/loto_201911.zip");
File f = new File("src/main/resources/loto_201911.csv");
assertTrue(f.exists());
}
}