Files
JIMRI/java/test/jmri/jmrit/logixng/tools/RunTestScaffold.java
T
2026-06-17 14:00:51 +02:00

15 lines
288 B
Java

package jmri.jmrit.logixng.tools;
import jmri.JmriException;
/**
* Interface used in the tests of this package.
*
* @author Daniel Bergqvist (C) 2020
*/
public interface RunTestScaffold {
public void runTest(String message, boolean expectSuccess) throws JmriException;
}