public class EUnitTestRunner extends org.junit.runners.ParentRunner<EUnitTest>
Bridge runner between EUnit and JUnit. Can be used to turn an EUnit script into a JUnit Plug-in Test, for continuous integration.
This runner should only be used with test classes that implement the
IEUnitSuite
interface for specifying the URI to the .eunit script and
reloading the models between tests.
Unlike previous EUnit test runners that only supported a subset of EUnit, this runner supports every feature in EUnit except for those specific to Ant, such as runTarget, useVariable, exportVariable and loadHutn.
Users can provide additional built-in operations for their tests by implementing
the IEUnitSuite.getOperationContributor()
method appropriately. This can
be useful when invoking EVL code, for instance, as we can't access the Ant tasks
from a JUnit plugin test.
Constructor and Description |
---|
EUnitTestRunner(java.lang.Class<? extends IEUnitSuite> testClass) |
public EUnitTestRunner(java.lang.Class<? extends IEUnitSuite> testClass) throws org.junit.runners.model.InitializationError
org.junit.runners.model.InitializationError