OperationsTest.java 448B

1234567891011121314151617181920
  1. import org.junit.Test;
  2. import org.junit.Assert;
  3. public class OperationsTest {
  4. @Test
  5. public void testAdd() throws Exception {
  6. Assert.assertEquals(2, Operations.add(1, 1));
  7. }
  8. @Test
  9. public void testSubtract() throws Exception {
  10. Assert.assertEquals(0, Operations.subtract(1, 1));
  11. }
  12. @Test
  13. public void testMultiply() throws Exception {
  14. Assert.assertEquals(4, Operations.multiply(2, 2));
  15. }
  16. }