Package org.jzonic.jlo

Source Code of org.jzonic.jlo.AllTests

/*
* Created on 24.07.2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package org.jzonic.jlo;

import junit.framework.Test;
import junit.framework.TestSuite;
import org.jzonic.jlo.formatter.DefaultFormatterTest;
import org.jzonic.jlo.formatter.SimpleFormatterTest;
import org.jzonic.jlo.formatter.DefinedFormatterTest;
import org.jzonic.jlo.handler.RollingDateFileHandlerTest;
import org.jzonic.jlo.reader.XMLFileReaderTest;

/**
* @author terry
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class AllTests {
   
    public AllTests(String name) {
    }
   
    public static void main(String[] args) {
        junit.textui.TestRunner.run(AllTests.suite());
    }
   
    public static Test suite() {
        TestSuite suite = new TestSuite("Test for org.jzonic.jlo");
        //$JUnit-BEGIN$
        suite.addTest(new TestSuite(LogConfigurationTest.class));
        suite.addTest(new TestSuite(LogManagerTest.class));
        suite.addTest(new TestSuite(LoggerTest.class));
        suite.addTest(new TestSuite(LoggingTest.class));
        suite.addTest(new TestSuite(TargetTest.class));
        suite.addTest(new TestSuite(DefaultFormatterTest.class));
        suite.addTest(new TestSuite(SimpleFormatterTest.class));
        suite.addTest(new TestSuite(DefinedFormatterTest.class));
        suite.addTest(new TestSuite(XMLFileReaderTest.class));
        suite.addTest(new TestSuite(VariableManagerTest.class));       
        suite.addTest(new TestSuite(CompleteLoggerTest.class));
        suite.addTest(new TestSuite(TestConfigLoggerTest.class));
        suite.addTest(new TestSuite(LogPipeTest.class));
        suite.addTest(new TestSuite(RollingDateFileHandlerTest.class));
        //$JUnit-END$
        return suite;
    }
}
TOP

Related Classes of org.jzonic.jlo.AllTests

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.