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 -
Method Summary
Modifier and TypeMethodDescriptionvoid
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 Details
-
EXTENSION_POINT_ID
- See Also:
-
-
Method Details
-
beforeCase
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
Notification sent after running a test case.- Parameters:
module
- EUnit module under execution.test
- Test case, with its result set.
-