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