Information about the quality of the software product or service under test.
Program in eclipse to create test cases for Power using java :
Power.java
package programs; public class Power2 { public int pow(int x) { int flag=0; while(x!=0) { int rem=x%2; if(rem==1) { flag++; } x=x/2; } return flag; } }
PowerTest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class Power2Test { Power2 p; @Before public void setUp() throws Exception { p=new Power2(); } @After public void tearDown() throws Exception { } @Test public void test() { assertEquals(1,p.pow(64)); } }
![]() | Aniket Pramanik I love to make things simple :) |
|||
![]() |