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/ImportDataTest.java
yann_ 2eb99132c7 ImportData + test ImportData
Le code est fonctionnel
2021-02-01 18:29:09 +01:00

17 lines
No EOL
255 B
Java

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();
}
}