ru.yandex.qatools.allure.events.StepFailureEvent Maven / Gradle / Ivy
package ru.yandex.qatools.allure.events;
import ru.yandex.qatools.allure.model.Status;
import ru.yandex.qatools.allure.model.Step;
/**
* @author Dmitry Baev [email protected]
* Date: 11.11.13
*
* Using to mark current step as failed and attach for it {@link Throwable}
*/
public class StepFailureEvent extends AbstractStepFailureEvent {
/**
* Change step status to {@link ru.yandex.qatools.allure.model.Status#FAILED} if
* throwable instance of AssertionError and to {@link ru.yandex.qatools.allure.model.Status#BROKEN}
* otherwise
*
* @param step which will be changed
*/
@Override
public void process(Step step) {
Status status = throwable instanceof AssertionError ? Status.FAILED : Status.BROKEN;
step.setStatus(status);
}
/**
* Set specified throwable to event using fluent-api interface
*
* @param throwable the throwable to set
* @return modified instance
*/
public StepFailureEvent withThrowable(Throwable throwable) {
setThrowable(throwable);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy