Package sbt.testing
Interface EventHandler
-
public interface EventHandlerInterface implemented by clients that handle events fired by the test framework during a run.An event handler is passed to the test framework via the
executemethod ofTasks.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(Event event)Handle an event.
-
-
-
Method Detail
-
handle
void handle(Event event)
Handle an event.- Parameters:
event- the event to handle
-
-