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