KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * $Id: IFTagSLBeanTest.java,v 1.1 2002/03/05 21:27:26 vharcq Exp $
3  */

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 JavaDoc 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 JavaDoc[] args)
30     {
31         TestRunner.run(suite());
32     }
33
34 }
35
Popular Tags