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 12 public class IFTagSLBeanTest 13 extends TestCase 14 { 15 16 public IFTagSLBeanTest(String name) 17 { 18 super(name); 19 } 20 21 public static Test suite() 22 { 23 TestSuite suite = new TestSuite(); 24 StatelessSessionBeanRegressionTestCase slt = new StatelessSessionBeanRegressionTestCase("Stateless Session Bean","IFTagSL"); 25 suite.addTest(slt.getSuite()); 26 return suite; 27 } 28 29 public static void main(String [] args) 30 { 31 TestRunner.run(suite()); 32 } 33 34 } 35 | Popular Tags |