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