1 25 26 package org.objectweb.jonas.jtests.clients.jca15; 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_jca15 extends JTestCase { 36 37 public C_jca15(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 suite.addTest(C_inbound.suite()); 49 50 return suite; 51 } 52 53 public static void main (String args[]) { 54 55 junit.textui.TestRunner.run(suite()); 57 58 } 59 60 } 61 | Popular Tags |