1 25 26 package org.objectweb.jonas.jtests.clients.hotdeploy; 27 28 import junit.framework.Test; 29 import junit.framework.TestSuite; 30 import org.objectweb.jonas.jtests.util.JTestCase; 31 32 public class C_hotdeploy extends JTestCase { 33 34 public C_hotdeploy(String name) { 35 super(name); 36 } 37 38 41 public static Test suite() { 42 TestSuite suite = new TestSuite(); 43 suite.addTest(F_EjbJarHotDeploy.suite()); 44 return suite; 45 } 46 47 public static void main (String args[]) { 48 junit.textui.TestRunner.run(suite()); 49 } 50 } 51 | Popular Tags |