M332-PT-NGCC/NGCC/tests/config/TestReponse.java
2019-10-03 15:08:36 +02:00

17 lines
308 B
Java
Raw Blame History

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