Information about the quality of the software product or service under test.
Program in eclipse to create test cases for Product Digit
ProductDigit.java
package programs; public class ProductDigit { public int prod(int a) { int p=1; while(a!=0) { int last=a%10; p=p*last; a=a/10; } return p; } }
ProductDigitTest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class ProductDigitTest { ProductDigit p; @Before public void setUp() throws Exception { p=new ProductDigit(); } @After public void tearDown() throws Exception { p=null;} @Test public void test() { assertEquals(10,p.prod(25)); } }
![]() | Aniket Pramanik I love to make things simple :) |
|||
![]() |