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 TypeMethodDescriptionvoidafterCase(EUnitModule module, EUnitTest test) Notification sent after running a test case.voidbeforeCase(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.
-