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