KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > ejtools > management > test > ConnectivityTestSuite


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
4  * Distributable under LGPL license.
5  * See terms of license at www.gnu.org.
6  */

7 package net.sourceforge.ejtools.management.test;
8
9 import junit.extensions.jfunc.JFuncSuite;
10
11 import org.apache.log4j.Category;
12
13 /**
14  * Description of the Class
15  *
16  * @author letiembl
17  * @created 21 mars 2002
18  */

19 public class ConnectivityTestSuite extends JFuncSuite
20 {
21    /** Description of the Field */
22    private static Category logger = Category.getInstance(ConnectivityTestSuite.class);
23
24
25    /** Constructor for the ConnectivityTestSuite object */
26    public ConnectivityTestSuite()
27    {
28         ConnectivityTestCase test = (ConnectivityTestCase) getTestProxy(new ConnectivityTestCase());
29         test.testManagementEJB();
30    }
31 }
32
Popular Tags