1 26 27 package net.sourceforge.groboutils.codecoverage.v2.datastore; 28 29 import java.io.File ; 30 import java.io.IOException ; 31 32 import junit.framework.Test; 33 import junit.framework.TestCase; 34 import net.sourceforge.groboutils.autodoc.v1.AutoDoc; 35 import net.sourceforge.groboutils.junit.v1.iftc.CxFactory; 36 import net.sourceforge.groboutils.junit.v1.iftc.InterfaceTestSuite; 37 38 39 46 public class DirMetaDataWriterUTest extends TestCase 47 { 48 51 private static final Class THIS_CLASS = DirMetaDataWriterUTest.class; 52 private static final AutoDoc DOC = new AutoDoc( THIS_CLASS ); 53 54 public DirMetaDataWriterUTest( String name ) 55 { 56 super( name ); 57 } 58 59 60 63 64 public void testNeedMore() 65 { 66 } 67 68 69 72 73 74 77 78 public static Test suite() 79 { 80 InterfaceTestSuite suite = IMetaDataWriterUTestI.suite(); 81 suite.addTestSuite( THIS_CLASS ); 82 suite.addFactory( new CxFactory( "A" ) { 83 public Object createImplObject() throws IOException { 84 return new DirMetaDataWriter( new File ( "." ) ); 85 } 86 } ); 87 88 return suite; 89 } 90 91 public static void main( String [] args ) 92 { 93 String [] name = { THIS_CLASS.getName() }; 94 95 98 junit.textui.TestRunner.main( name ); 99 } 100 101 102 106 protected void setUp() throws Exception 107 { 108 super.setUp(); 109 110 111 } 113 114 115 119 protected void tearDown() throws Exception 120 { 121 123 124 super.tearDown(); 125 } 126 } 127 128 | Popular Tags |