M332-PT-NGCC/tests/config/TestReponse.java
2019-10-10 18:01:08 +02:00

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