Package org.eclipse.epsilon.eunit
Interface EUnitTestListener
-
- All Known Implementing Classes:
EUnitRunnerView
,EUnitTask
,EUnitTestRunner.JUnitEUnitTestListener
,ShowEUnitViewTestListener
public interface EUnitTestListener
Simple interface for objects which receive notifications regarding the progress of a test suite.- Version:
- 1.0
- Author:
- Antonio García-Domínguez
-
-
Field Summary
Fields Modifier and Type Field Description static String
EXTENSION_POINT_ID
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterCase(EUnitModule module, EUnitTest test)
Notification sent after running a test case.void
beforeCase(EUnitModule module, EUnitTest test)
Notification sent before running a test case.
-
-
-
Field Detail
-
EXTENSION_POINT_ID
static final String EXTENSION_POINT_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
beforeCase
void beforeCase(EUnitModule module, EUnitTest test)
Notification sent before running a test case.- Parameters:
module
- EUnit module under execution.test
- Description of the test case: its result has not been set yet.
-
afterCase
void afterCase(EUnitModule module, EUnitTest test)
Notification sent after running a test case.- Parameters:
module
- EUnit module under execution.test
- Test case, with its result set.
-
-