1 16 17 package org.apache.commons.logging; 18 19 20 28 public class LogTestCase extends AbstractLogTest 29 { 30 31 36 public Log getLogObject() 37 { 38 41 return LogFactory.getLog(this.getClass().getName()); 42 } 43 44 public static void main(String [] args) 45 { 46 String [] testCaseName = { LogTestCase.class.getName() }; 47 junit.textui.TestRunner.main(testCaseName); 48 } 49 } 50 | Popular Tags |