Information about the quality of the software product or service under test.
Program in eclipse to create test cases for Maximum Array (Max Array) :
MaxArray.java
package programs; public class MaxArray { public int max(int a[]) { int max=a[0]; for(int i=0;i<a.length;i++) { if(max<a[i]) max=a[i]; } System.out.println("max="+max); return max; } }
MaxArrayTest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class MaxArrayTest { MaxArray m; @Before public void setUp() throws Exception { m=new MaxArray();} @After public void tearDown() throws Exception { } @Test public void test() { int[] a= {5,3,4,10,8}; assertEquals(10,m.max(a)); } }
Aniket Pramanik I love to make things simple :) |
||||