1 4 package xdoclet.retest.test.ejb; 5 6 import junit.framework.TestCase; 7 import junit.framework.Test; 8 import junit.framework.TestSuite; 9 import junit.textui.TestRunner; 10 import xdoclet.retest.test.StatelessSessionBeanRegressionTestCase; 11 import xdoclet.retest.test.DeploymentDescriptorsRegressionTestCase; 12 13 public class CreateMethodSLBeanTest 14 extends TestCase 15 { 16 17 public CreateMethodSLBeanTest(String name) 18 { 19 super(name); 20 } 21 22 public static Test suite() 23 { 24 TestSuite suite = new TestSuite(); 25 StatelessSessionBeanRegressionTestCase slt = new StatelessSessionBeanRegressionTestCase("Stateless Session Bean","CreateMethodSL"); 26 suite.addTest(slt.getSuite()); 27 return suite; 28 } 29 30 public static void main(String [] args) 31 { 32 TestRunner.run(suite()); 33 } 34 35 } 36 | Popular Tags |