Package net.sourceforge.marathon.runtime

Examples of net.sourceforge.marathon.runtime.NullLogger


        runtimeLogger = logViewLogger;
    }

    public static ILogger getRuntimeLogger() {
        if(runtimeLogger == null)
            return new NullLogger();
        return runtimeLogger;
    }
View Full Code Here


            return;
        }
        processMPF(projectDir);
        setDefaultIndent();
        setLogConfiguration(projectDir);
        RuntimeLogger.setRuntimeLogger(new NullLogger());
        TestRunner aTestRunner = new TestRunner();
        try {
            TestResult r = aTestRunner.runTests(argProcessor);
            if (!r.wasSuccessful())
                System.exit(junit.textui.TestRunner.FAILURE_EXIT);
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.runtime.NullLogger

Copyright © 2018 www.massapicom. 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.