BUT2/DEV/DEV2.3/TP02_JUnit/ex2/TestLargest.java

11 lines
203 B
Java
Raw Normal View History

2023-10-23 13:23:36 +02:00
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class TestLargest {
@Test
public void testSimple() {
assertEquals(12, Largest.largest(new int[] {9,8,7,12}));
}
}