Information about the quality of the software product or service under test.
calculator.java
calculatorTest.java
package programs; public class calculator { public int add(int a,int b) { int c; return c=a+b; } public int sub(int a,int b) { int c; return c=a-b; } public int mul(int a,int b) { int c; return c=a*b; } public int div(int a,int b) { int c; return c=a/b; } public int rem(int a,int b) { int c; return c=a%b; } }
calculatorTest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class calculatorTest { calculator c; @Before public void setUp() throws Exception { c=new calculator(); } @After public void tearDown() throws Exception { c=null; } @Test public void test() { assertEquals(10,c.add(5,5)); assertEquals(0,c.sub(5,5)); assertEquals(25,c.mul(5,5)); assertEquals(2,c.div(10,5)); assertEquals(0,c.rem(10,5)); } }
![]() | Aniket Pramanik I love to make things simple :) |
|||
![]() |