Information about the quality of the software product or service under test.
max.java
Program in eclipse to create test cases for Max (Maximum Number find ) using java :
package programs; public class Max { public int maximum(int a,int b,int c) { int max=a; if((b>a)&&(b>c)) return max=b; if(c>a &&c>b) { return max=c;} else return max; } }
maxtest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class MaxTest { Max n; @Before public void setUp() throws Exception { n=new Max(); } @After public void tearDown() throws Exception { n=null;} @Test public void test() { assertEquals(3,n.maximum(1, 3, 2)); assertEquals(3,n.maximum(1, 2, 3)); assertEquals(3,n.maximum(3,0, 2)); } }
![]() | Aniket Pramanik I love to make things simple :) |
|||
![]() |