61 lines
2.0 KiB
Java
61 lines
2.0 KiB
Java
package apps.tests;
|
|
|
|
import org.junit.internal.TextListener;
|
|
import org.junit.platform.runner.JUnitPlatform;
|
|
import org.junit.platform.suite.api.*;
|
|
import org.junit.runner.*;
|
|
import org.junit.runner.notification.RunListener;
|
|
|
|
/**
|
|
* Invoke all the JMRI project JUnit tests via a GUI interface.
|
|
*
|
|
* <hr>
|
|
* This file is part of JMRI.
|
|
* <p>
|
|
* JMRI is free software; you can redistribute it and/or modify it under the
|
|
* terms of version 2 of the GNU General Public License as published by the Free
|
|
* Software Foundation. See the "COPYING" file for a copy of this license.
|
|
* <p>
|
|
* JMRI is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* @author Bob Jacobsen
|
|
*/
|
|
@RunWith(JUnitPlatform.class)
|
|
@SuiteDisplayName("OperationTests")
|
|
@SelectPackages({"jmri.jmrit.operations", "jmri.server.json.operations", "jmri.web.servlet.operations", "jmri.jmris.simpleserver"})
|
|
@ExcludeClassNamePatterns({"HeadLessTest","FileLineEndingsTest","ArchitectureTest"})
|
|
public class JUnitOperationsTests {
|
|
|
|
public static void main(String[] args) {
|
|
run(JUnitOperationsTests.class);
|
|
}
|
|
|
|
/**
|
|
* Run tests with a default RunListener.
|
|
*
|
|
* @param testClass the class containing tests to run
|
|
*/
|
|
public static void run(Class<?> testClass){
|
|
run(new TextListener(System.out),testClass);
|
|
}
|
|
|
|
/**
|
|
* Run tests with a specified RunListener.
|
|
* Will shut down the VM on completion.
|
|
*
|
|
* @param listener the listener for the tests
|
|
* @param testClass the class containing tests to run
|
|
*/
|
|
@edu.umd.cs.findbugs.annotations.SuppressFBWarnings( value = "DM_EXIT",
|
|
justification = "OK to exit VM")
|
|
public static void run(RunListener listener, Class<?> testClass) {
|
|
JUnitCore runner = new JUnitCore();
|
|
runner.addListener(listener);
|
|
Result result = runner.run(testClass);
|
|
System.exit(result.wasSuccessful() ? 0 : 1);
|
|
}
|
|
|
|
}
|