Supprimer 'SimpleTest.java'

This commit is contained in:
Abdel Kader Chabi Sika Boni 2020-12-10 23:58:52 +01:00
parent 7dcc678992
commit 647cc0c008

View file

@ -1,20 +0,0 @@
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);
}
}