ImportData + test ImportData
Le code est fonctionnel
This commit is contained in:
parent
4d17091234
commit
2eb99132c7
2 changed files with 31 additions and 21 deletions
17
src/test/java/fr/myny/data/ImportDataTest.java
Normal file
17
src/test/java/fr/myny/data/ImportDataTest.java
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
package fr.myny.data;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
class ImportDataTest {
|
||||
|
||||
@Test
|
||||
void downloadCsvZip() {
|
||||
|
||||
ImportData csv = new ImportData();
|
||||
|
||||
csv.DownloadCsvZip();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in a new issue