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