Information about the quality of the software product or service under test.
Program in eclipse to create test cases for Prime Number :
PrimeNum.java
package programs; public class PrimeNum { public boolean prime(int x) { boolean flag=true; for(int i=2;i<=x/2;i++) { if(x%i==0) { flag=false; break; } } return flag; } }
PrimeNumTest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class PrimeNumTest { PrimeNum x; @Before public void setUp() throws Exception { x=new PrimeNum();} @After public void tearDown() throws Exception { x=null;} @Test public void test() { assertTrue("Result",x.prime(5)); assertEquals(false,x.prime(9)); } }
Aniket Pramanik I love to make things simple :) |
||||