Information about the quality of the software product or service under test.
Program in eclipse to create test cases for Sub String :
SubString.java
package programs; public class SubStr { public boolean subString(String str1,String str2) { boolean flag=false; for(int i=0;i<str1.length();i++) { if(str2.equals(str1.substring(i))) { flag=true; } } return flag; } }
SubStringTest.java
package programs; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; public class SubStrTest { SubStr s; @Before public void setUp() throws Exception { s=new SubStr();} @After public void tearDown() throws Exception { s=null;} @Test public void test() { assertEquals(true,s.subString("welcome", "come")); assertEquals(false,s.subString("welcome", "comelo")); } }
Aniket Pramanik I love to make things simple :) |
||||