This commit is contained in:
JunkJumper 2020-05-08 17:00:32 +02:00
parent ff66ba807a
commit 3e88a7d1a7
3 changed files with 2 additions and 3 deletions

BIN
bdd.sql

Binary file not shown.

Binary file not shown.

View File

@ -12,17 +12,16 @@ import org.junit.jupiter.api.Test;
public class TestDatabse { public class TestDatabse {
Table t; Table t;
@BeforeEach @BeforeEach
private void initialize() { private void initialize() {
System.out.println("=====Initialisation du test====="); System.out.println("=====Initialisation du test======");
t = new Table("Table de Test"); t = new Table("Table de Test");
} }
@AfterEach @AfterEach
private void free() { private void free() {
System.gc(); System.gc();
System.out.println("=====Fin du test=====\n\n\n"); System.out.println("===========Fin du test===========\n\n\n");
} }
@Test @Test