1 26 27 package net.sourceforge.groboutils.pmti.v1; 28 29 import net.sourceforge.groboutils.autodoc.v1.AutoDoc; 30 import org.easymock.EasyMock; 31 import org.easymock.MockControl; 32 import net.sourceforge.groboutils.junit.v1.iftc.*; 33 import junit.framework.Test; 34 import junit.framework.TestCase; 35 import junit.framework.TestSuite; 36 37 38 45 public class IEditableListAttributeUTestI extends InterfaceTestCase 46 { 47 50 private static final Class THIS_CLASS = IEditableListAttributeUTestI.class; 51 private static final AutoDoc DOC = new AutoDoc( THIS_CLASS ); 52 53 public IEditableListAttributeUTestI( String name, ImplFactory f ) 54 { 55 super( name, IListAttribute.class, f ); 56 } 57 58 59 public IEditableListAttribute createIEditableListAttribute() 60 { 61 return (IEditableListAttribute)createImplObject(); 62 } 63 64 65 68 69 70 71 74 75 public static InterfaceTestSuite suite() 76 { 77 InterfaceTestSuite suite = new InterfaceTestSuite( THIS_CLASS ); 78 79 suite.addInterfaceTestSuite( IListAttributeUTestI.suite() ); 80 81 return suite; 82 } 83 84 public static void main( String [] args ) 85 { 86 String [] name = { THIS_CLASS.getName() }; 87 88 91 junit.textui.TestRunner.main( name ); 92 } 93 94 95 99 protected void setUp() throws Exception 100 { 101 super.setUp(); 102 103 } 105 106 107 111 protected void tearDown() throws Exception 112 { 113 115 116 super.tearDown(); 117 } 118 } 119 120 | Popular Tags |