17 lines
308 B
Java
17 lines
308 B
Java
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());
|
||
|
||
}
|
||
|
||
}
|