Information about the quality of the software product or service under test.
Program in eclipse to create test cases for Special Char
specialchar.java
package programs; public class SpecialChar { public String filter(String x) { String str=""; str=x.replaceAll("[-+^:~!@#$%&()<>]", ""); System.out.println(str); return str; } }
specialchartest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class SpecialCharTest { SpecialChar x; @Before public void setUp() throws Exception { x=new SpecialChar();} @After public void tearDown() throws Exception { x=null;} @Test public void test() { assertEquals("aniket",x.filter("a#nik-et+")); } }
![]() | Aniket Pramanik I love to make things simple :) |
|||
![]() |