1 16 17 package org.apache.commons.logging; 18 19 import org.apache.commons.logging.impl.SimpleLog; 20 21 29 public class SimpleLogTestCase extends AbstractLogTest 30 { 31 36 public Log getLogObject() 37 { 38 return (Log) new SimpleLog(this.getClass().getName()); 39 } 40 41 public static void main(String [] args) { 42 String [] testCaseName = { SimpleLogTestCase.class.getName() }; 43 junit.textui.TestRunner.main(testCaseName); 44 } 45 } 46 | Popular Tags |