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 36 37 public class C_PkAuto extends JTestCase { 38 39 public C_PkAuto(String name) { 40 super(name); 41 } 42 43 public static Test suite() { 44 TestSuite suite = new TestSuite(); 45 suite.addTest(F_PkAutoEC.suite()); 46 suite.addTest(F_PkAutoEC2.suite()); 47 return suite; 48 49 } 50 public static void main (String args[]) { 51 junit.textui.TestRunner.run(suite()); 52 } 53 54 } 55 | Popular Tags |