Package org.jzonic.jlo

Source Code of org.jzonic.jlo.CommonsLoggingTest

package org.jzonic.jlo;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import junit.framework.TestCase;

public class CommonsLoggingTest extends TestCase {

  public void testLogging() {       
    Log log = LogFactory.getLog(CommonsLoggingTest.class);
        log.info("Hello");                           
    }  
}
TOP

Related Classes of org.jzonic.jlo.CommonsLoggingTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.