All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.invictum.events.StepSkippedEvent Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
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