M332-PT-NGCC/NGCC/tests/config/TestReponse.java

17 lines
308 B
Java
Raw Normal View History

2019-09-19 14:54:30 +02:00
package config;
import static org.junit.Assert.assertEquals;
import org.junit.jupiter.api.Test;
public class TestReponse {
@Test
void testReponse() {
2019-10-03 15:08:36 +02:00
Reponse r=new Reponse("Je suis la r<>ponse",true);
assertEquals("Je suis la r<>ponse",r.getIntitule());
2019-09-19 14:54:30 +02:00
assertEquals(true,r.isJuste());
}
}