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