Package net.sourceforge.squirrel_sql

Source Code of net.sourceforge.squirrel_sql.BaseSQuirreLTestCase

package net.sourceforge.squirrel_sql;

import junit.framework.TestCase;
import net.sourceforge.squirrel_sql.fw.util.log.ILogger;
import net.sourceforge.squirrel_sql.fw.util.log.LoggerController;

import org.apache.log4j.Level;

public abstract class BaseSQuirreLTestCase extends TestCase {

    protected void setUp() throws Exception {
        super.setUp();
    }

    protected void tearDown() throws Exception {
        super.tearDown();
    }
    @SuppressWarnings("unchecked")
    protected static void disableLogging(Class c) {
        ILogger s_log = LoggerController.createLogger(c);
        s_log.setLevel(Level.OFF);       
    }
   
    @SuppressWarnings("unchecked")
    protected static void debugLogging(Class c) {
        ILogger s_log = LoggerController.createLogger(c);
        s_log.setLevel(Level.DEBUG);       
    }
   
}
TOP

Related Classes of net.sourceforge.squirrel_sql.BaseSQuirreLTestCase

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.