ajout de la classe SimpleClasse.java

This commit is contained in:
Abdel Kader Chabi Sika Boni 2020-12-10 23:24:29 +01:00
parent 6564026bcc
commit 7dcc678992

20
SimpleTest.java Normal file
View file

@ -0,0 +1,20 @@
import static org.junit.Assert.assertTrue;
import org.junit.Test;
public class SimpleTest {
@Test
public void test1(){
int a=2;
int b=2;
assertTrue(a+b==4);
}
@Test
public void test2(){
int a=2;
int b=2;
assertTrue(a+b<4);
}
}