public interface EventPublisher
| Modifier and Type | Method and Description |
|---|---|
<T extends Event> |
registerHandlerFor(Class<T> eventType,
EventHandler<T> handler)
Registers an event handler for a specific event.
|
<T extends Event> void registerHandlerFor(Class<T> eventType, EventHandler<T> handler)
TestRunStarted - the first event sent.
TestSourceRead - sent for each feature file read, contains the feature file source.
SnippetsSuggestedEvent - sent for each step that could not be matched to a step definition, contains the raw snippets for the step.
TestCaseStarted - sent before starting the execution of a Test Case(/Pickle/Scenario), contains the Test Case
TestStepStarted - sent before starting the execution of a Test Step, contains the Test Step
EmbedEvent - calling scenario.embed in a hook triggers this event.
WriteEvent - calling scenario.write in a hook triggers this event.
TestStepFinished - sent after the execution of a Test Step, contains the Test Step and its Result.
TestCaseFinished - sent after the execution of a Test Case(/Pickle/Scenario), contains the Test Case and its Result.
TestRunFinished - the last event sent.
T - the event typeeventType - the event type for which the handler is being registeredhandler - the event handlerCopyright © 2018. All rights reserved.