Information about the quality of the software product or service under test.
Program in eclipse to create test cases for factorial using java :-
Factorial.java
package programs; public class Factorial { public int fact(int num) { int fact=1; while(num!=0) { fact=fact*num; num--; } return fact; } }
Factotialtest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class FactorialTest { Factorial num; @Before public void setUp() throws Exception { num=new Factorial();} @After public void tearDown() throws Exception { num=null;} @Test public void test() { assertEquals(120,num.fact(5)); } }
![]() | Aniket Pramanik I love to make things simple :) |
|||
![]() |