KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jzonic > jlo > CommonsLoggingTest


1 package org.jzonic.jlo;
2
3 import org.apache.commons.logging.Log;
4 import org.apache.commons.logging.LogFactory;
5 import junit.framework.TestCase;
6
7 public class CommonsLoggingTest extends TestCase {
8
9     public void testLogging() {
10         Log log = LogFactory.getLog(CommonsLoggingTest.class);
11         log.info("Hello");
12     }
13 }
14
Popular Tags