getLifecycle().fire(new TestCaseFinishedEvent());
}
public void fireTestCaseFailure(Throwable throwable) {
if (throwable instanceof AssumptionViolatedException) {
getLifecycle().fire(new TestCaseCanceledEvent().withThrowable(throwable));
} else {
getLifecycle().fire(new TestCaseFailureEvent().withThrowable(throwable));
}
}