1 16 17 18 package org.apache.commons.logging; 19 20 import junit.framework.*; 21 22 23 34 public class TestAll extends TestCase { 35 36 public TestAll(String testName) { 37 super(testName); 38 } 39 40 41 public static Test suite() { 42 TestSuite suite = new TestSuite(); 43 44 suite.addTest(SimpleLogTest.suite()); 45 suite.addTest(NoOpLogTest.suite()); 46 suite.addTest(LogTest.suite()); 47 48 return suite; 49 } 50 51 54 public static void main(String args[]) { 55 String [] testCaseName = { TestAll.class.getName() }; 56 junit.textui.TestRunner.main(testCaseName); 57 } 58 } 59 | Popular Tags |