1 16 package org.joda.time.chrono.gj; 17 18 import junit.framework.Test; 19 import junit.framework.TestCase; 20 import junit.framework.TestSuite; 21 22 29 public class TestAll extends TestCase { 30 31 public TestAll(String testName) { 32 super(testName); 33 } 34 35 public static Test suite() { 36 TestSuite suite = new TestSuite(); 37 suite.addTest(new MainTest(1000, 0, 1345435247779935L)); 38 suite.addTest(new MainTest(1000, 1, 1345435247779935L)); 39 return suite; 40 } 41 42 public static void main(String args[]) { 43 String [] testCaseName = { 44 TestAll.class.getName() 45 }; 46 junit.textui.TestRunner.main(testCaseName); 47 } 48 49 } 50 | Popular Tags |