Class EUnitTestRunner
- java.lang.Object
-
- org.junit.runner.Runner
-
- org.junit.runners.ParentRunner<EUnitTest>
-
- org.eclipse.epsilon.eunit.junit.EUnitTestRunner
-
- All Implemented Interfaces:
org.junit.runner.Describable
,org.junit.runner.manipulation.Filterable
,org.junit.runner.manipulation.Orderable
,org.junit.runner.manipulation.Sortable
- Direct Known Subclasses:
EclipseEUnitTestRunner
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
TODO: integrate the EOL debugger somehow. TODO: add support for running Ant targets from a previously specified Ant script, in order to reuse the workflow tasks. We could get back most of the missing functionality this way. The main problem is that this would probably require copying over the original project to the runtime workspace, and that could complicate things quite a bit.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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected class
EUnitTestRunner.JUnitEUnitTestListener
-
Field Summary
Fields Modifier and Type Field Description protected EUnitModule
module
protected IEUnitSuite
suiteInstance
-
Constructor Summary
Constructors Constructor Description EUnitTestRunner(Class<? extends IEUnitSuite> testClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.junit.runner.Description
describeChild(EUnitTest child)
protected List<EUnitTest>
getChildren()
protected void
runChild(EUnitTest child, org.junit.runner.notification.RunNotifier notifier)
-
Methods inherited from class org.junit.runners.ParentRunner
childrenInvoker, classBlock, classRules, collectInitializationErrors, createTestClass, filter, getDescription, getName, getRunnerAnnotations, getTestClass, isIgnored, order, run, runLeaf, setScheduler, sort, validatePublicVoidNoArgMethods, withAfterClasses, withBeforeClasses, withInterruptIsolation
-
-
-
-
Field Detail
-
module
protected EUnitModule module
-
suiteInstance
protected IEUnitSuite suiteInstance
-
-
Constructor Detail
-
EUnitTestRunner
public EUnitTestRunner(Class<? extends IEUnitSuite> testClass) throws org.junit.runners.model.InitializationError
- Throws:
org.junit.runners.model.InitializationError
-
-
Method Detail
-
getChildren
protected List<EUnitTest> getChildren()
- Specified by:
getChildren
in classorg.junit.runners.ParentRunner<EUnitTest>
-
describeChild
protected org.junit.runner.Description describeChild(EUnitTest child)
- Specified by:
describeChild
in classorg.junit.runners.ParentRunner<EUnitTest>
-
-