1 16 package org.joda.time.chrono; 17 18 import junit.framework.Test; 19 import junit.framework.TestCase; 20 import junit.framework.TestSuite; 21 import junit.textui.TestRunner; 22 23 30 public class TestAll extends TestCase { 31 32 public static boolean FAST = false; 33 34 public TestAll(String testName) { 35 super(testName); 36 } 37 38 public static Test suite() { 39 TestSuite suite = new TestSuite(); 40 41 suite.addTest(TestBuddhistChronology.suite()); 42 suite.addTest(TestCopticChronology.suite()); 43 suite.addTest(TestEthiopicChronology.suite()); 44 suite.addTest(TestGJChronology.suite()); 45 suite.addTest(TestGregorianChronology.suite()); 46 suite.addTest(TestIslamicChronology.suite()); 47 suite.addTest(TestJulianChronology.suite()); 48 suite.addTest(TestISOChronology.suite()); 49 50 return suite; 51 } 52 53 public static void main(String args[]) { 54 FAST = false; 55 TestRunner.run(TestAll.suite()); 56 } 57 58 } 59 | Popular Tags |