Information about the quality of the software product or service under test.
Program in eclipse to create test cases for String Concat
StringConcat.java
package programs; public class StringConcat { public String concat(String str1,String str2) { String nStr=""; nStr=str1.concat(str2); return nStr; } }
StringConcatTest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class StringConcatTest { StringConcat str; @Before public void setUp() throws Exception { str=new StringConcat();} @After public void tearDown() throws Exception { str=null;} @Test public void test() { assertEquals("aniketPramanik",str.concat("aniket","Pramanik")); } }
![]() | Aniket Pramanik I love to make things simple :) |
|||
![]() |