1 26 27 package net.sourceforge.groboutils.junit.v1.iftc; 28 29 import org.easymock.EasyMock; 31 import org.easymock.MockControl; 32 import junit.framework.Test; 33 import junit.framework.TestCase; 34 import junit.framework.TestSuite; 35 36 37 44 public class CxFactorySample extends CxFactory 45 { 46 public CxFactorySample( String s ) 47 { 48 super( s ); 49 } 50 51 public CxFactorySample( String s, boolean b ) 52 { 53 super( s, b ); 54 } 55 56 public Object createImplObject() 57 { 58 return ""; 59 } 60 } 61 62 | Popular Tags |