blob: d0eb283e151dae02f7f0af8da50a8045d5e64ef5 (
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 FooTest {
@Test
public void testAdd() throws Exception {
assertEquals(Foo.div(10, 5), 2);
}
}
|