Update arborescence 2

This commit is contained in:
Louis Calas
2019-10-10 18:01:08 +02:00
parent 29dba04efb
commit a0b8e315db
167 changed files with 3 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
package config;
import static org.junit.Assert.assertEquals;
import org.junit.jupiter.api.Test;
public class TestReponse {
@Test
void testReponse() {
Reponse r=new Reponse("Je suis la réponse",true);
assertEquals("Je suis la réponse",r.getIntitule());
assertEquals(true,r.isJuste());
}
}