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 35 public class C_j2eeca extends JTestCase { 36 37 public C_j2eeca(String name) { 38 super(name); 39 } 40 41 public static Test suite() { 42 TestSuite suite = new TestSuite(); 43 44 suite.addTest(C_connector.suite()); 45 suite.addTest(C_runtime.suite()); 46 suite.addTest(C_security.suite()); 47 suite.addTest(C_transaction.suite()); 48 49 return suite; 50 } 51 52 public static void main (String args[]) { 53 54 junit.textui.TestRunner.run(suite()); 56 57 } 58 59 } 60 | Popular Tags |