01: package org.jzonic.jlo;
02:
03: import org.apache.commons.logging.Log;
04: import org.apache.commons.logging.LogFactory;
05: import junit.framework.TestCase;
06:
07: public class CommonsLoggingTest extends TestCase {
08:
09: public void testLogging() {
10: Log log = LogFactory.getLog(CommonsLoggingTest.class);
11: log.info("Hello");
12: }
13: }
|