![JAR search and dependency download from the Maven repository](/logo.png)
com.github.invictum.events.StepSkippedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure-invictum-integration Show documentation
Show all versions of allure-invictum-integration Show documentation
Integration with allure reporting framework.
package com.github.invictum.events;
import ru.yandex.qatools.allure.events.AbstractStepCanceledEvent;
import ru.yandex.qatools.allure.model.Status;
import ru.yandex.qatools.allure.model.Step;
public class StepSkippedEvent extends AbstractStepCanceledEvent {
@Override
public void process(Step context) {
context.setStatus(Status.SKIPPED);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy