KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > retest > test > ejb > TransactionBeanTest


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 /**
10  * @author Vincent Harcq (vincent.harcq@hubmethods.com)
11  * @created Mar 10, 2002
12  * @version $Revision: 1.1 $
13  */

14 public class TransactionBeanTest
15         extends TestCase
16 {
17
18     public TransactionBeanTest(String JavaDoc 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 JavaDoc[] args)
32     {
33         TestRunner.run(suite());
34     }
35
36 }
37
Popular Tags