KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * $Id: CreateMethodSLBeanTest.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 import xdoclet.retest.test.DeploymentDescriptorsRegressionTestCase;
12
13 public class CreateMethodSLBeanTest
14         extends TestCase
15 {
16
17     public CreateMethodSLBeanTest(String JavaDoc name)
18     {
19         super(name);
20     }
21
22     public static Test suite()
23     {
24         TestSuite suite = new TestSuite();
25         StatelessSessionBeanRegressionTestCase slt = new StatelessSessionBeanRegressionTestCase("Stateless Session Bean","CreateMethodSL");
26         suite.addTest(slt.getSuite());
27         return suite;
28     }
29
30     public static void main(String JavaDoc[] args)
31     {
32         TestRunner.run(suite());
33     }
34
35 }
36
Popular Tags