blob: 8c28ff4c91e08ab0f3bdf8e82d9b7f8d23aa0431 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package foo;
import org.junit.Test;
import static org.junit.Assert.*;
public class SimplestTest {
@Test
public void testAdd() throws Exception {
assertEquals(Simplest.add(4, 5), 9);
}
}
|