1 15 16 package net.sourceforge.groboutils.junit.v1.iftc; 17 18 import junit.framework.Test; 19 import junit.framework.TestCase; 20 import junit.framework.TestSuite; 21 22 23 32 public class Sample4IUTestI extends InterfaceTestCase { 33 private static final Class THIS_CLASS = Sample4IUTestI.class; 34 35 public Sample4IUTestI( String name, ImplFactory f ) { 36 super( name, Sample4.class, f ); 37 } 38 39 protected Sample4 createSample4() { 40 return (Sample4)createImplObject(); 41 } 42 43 46 public void testProcessString1() { 47 Sample4 s4 = createSample4(); 48 s4.processStrings(); 49 } 50 51 public static InterfaceTestSuite suite() { 52 InterfaceTestSuite suite = 53 new InterfaceTestSuite( THIS_CLASS ); 54 return suite; 55 } 56 } 57 58 | Popular Tags |