1 16 package org.apache.commons.logging.tccl; 17 18 import org.apache.commons.logging.Log; 19 import org.apache.commons.logging.LogFactory; 20 import org.apache.commons.logging.PathableTestSuite; 21 22 import junit.framework.Test; 23 import junit.framework.TestCase; 24 25 28 public class NullTCCLTestCase extends TestCase { 29 30 public static Test suite() throws Exception {; 31 PathableTestSuite suite = new PathableTestSuite(NullTCCLTestCase.class, null); 32 return suite; 33 } 34 35 37 41 public void testGetLog() { 42 Log log = LogFactory.getLog(NullTCCLTestCase.class); 43 log.debug("Hello, Mum"); 44 } 45 } 46 | Popular Tags |