com.github.aoreshin.junit5.allure.steps.StepWrapperSteps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure-steps Show documentation
Show all versions of allure-steps Show documentation
Project to ease pain of test automation
package com.github.aoreshin.junit5.allure.steps;
import io.qameta.allure.Allure;
public interface StepWrapperSteps {
default T startStep(String stepName) {
StepWrapper.getInstance().startStep(stepName);
return (T) this;
}
default T stopStep() {
StepWrapper.getInstance().stopStep();
return (T) this;
}
default T step(String name, Allure.ThrowableContextRunnableVoid runnable) {
Allure.step(name, runnable);
return (T) this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy