17 lines
304 B
Java
17 lines
304 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.getIntitul<EFBFBD>());
|
|||
|
assertEquals(true,r.isJuste());
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|