Package com.alibaba.druid.bvt.support.logging

Source Code of com.alibaba.druid.bvt.support.logging.Jdk14LoggingImplTest

package com.alibaba.druid.bvt.support.logging;

import junit.framework.TestCase;

import org.junit.Assert;

import com.alibaba.druid.pool.DruidDataSource;
import com.alibaba.druid.support.logging.Jdk14LoggingImpl;

public class Jdk14LoggingImplTest extends TestCase {

    public void test_0() throws Exception {
        Jdk14LoggingImpl impl = new Jdk14LoggingImpl(DruidDataSource.class.getName());
      
        impl.isDebugEnabled();
        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
        Assert.assertEquals(2, impl.getErrorCount());
        Assert.assertEquals(2, impl.getWarnCount());
        Assert.assertEquals(1, impl.getInfoCount());
    }
}
TOP

Related Classes of com.alibaba.druid.bvt.support.logging.Jdk14LoggingImplTest

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.