1 25 26 package org.objectweb.jonas.jtests.clients.jdbcra; 27 28 import junit.framework.Test; 29 import junit.framework.TestSuite; 30 import org.objectweb.jonas.jtests.util.JTestCase; 31 32 35 36 38 public class C_JOnAS_jdbcXA extends JTestCase { 39 40 public C_JOnAS_jdbcXA(String name) { 41 super(name); 42 } 43 44 public static Test suite() { 45 TestSuite suite = new TestSuite(); 46 47 49 suite.addTest(F_JdbcRATest.suite()); 50 51 return suite; 52 } 53 54 public static void main (String [] args) { 55 junit.textui.TestRunner.run(suite()); 56 } 57 58 } 59 | Popular Tags |