1 26 27 package net.sourceforge.groboutils.codecoverage.v2.datastore; 28 29 import net.sourceforge.groboutils.autodoc.v1.AutoDoc; 30 import net.sourceforge.groboutils.junit.v1.iftc.ImplFactory; 31 import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestCase; 32 import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestSuite; 33 34 35 42 public class IMetaDataReaderUTestI extends InterfaceTestCase 43 { 44 47 private static final Class THIS_CLASS = IMetaDataReaderUTestI.class; 48 private static final AutoDoc DOC = new AutoDoc( THIS_CLASS ); 49 50 public IMetaDataReaderUTestI( String name, ImplFactory f ) 51 { 52 super( name, IMetaDataReader.class, f ); 53 } 54 55 56 public IMetaDataReader createIMetaDataReader() 57 { 58 return (IMetaDataReader)createImplObject(); 59 } 60 61 62 65 66 public void testNeedMore() 67 { 68 IMetaDataReader mdr = createIMetaDataReader(); 69 } 70 71 72 75 76 public static InterfaceTestSuite suite() 77 { 78 InterfaceTestSuite suite = new InterfaceTestSuite( THIS_CLASS ); 79 80 return suite; 81 } 82 83 public static void main( String [] args ) 84 { 85 String [] name = { THIS_CLASS.getName() }; 86 87 90 junit.textui.TestRunner.main( name ); 91 } 92 93 94 98 protected void setUp() throws Exception 99 { 100 super.setUp(); 101 102 } 104 105 106 110 protected void tearDown() throws Exception 111 { 112 114 115 super.tearDown(); 116 } 117 } 118 119 | Popular Tags |