1 25 26 package org.objectweb.jonas.jtests.clients.jms; 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_jms extends JTestCase { 36 37 public C_jms(String name) { 38 super(name); 39 } 40 41 public static Test suite() { 42 TestSuite suite = new TestSuite(); 43 44 suite.addTest(F_BasicMDB.suite()); 46 suite.addTest(F_RollbackMDB.suite()); 47 suite.addTest(F_TestsWithBMT.suite()); 48 49 return suite; 50 } 51 52 public static void main (String args[]) { 53 junit.textui.TestRunner.run(suite()); 54 } 55 } 56 | Popular Tags |