OperationsTest.java 607B

12345678910111213141516171819202122232425262728
  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. @Test
  17. public void testDivide()
  18. {
  19. Operations operatio1 = new Operations();
  20. Assert.assertEquals(1, Operations.divide(2, 2));
  21. }
  22. }