org.requirementsascode.systemreaction.AbstractContinues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of requirementsascodecore Show documentation
Show all versions of requirementsascodecore Show documentation
Enables you to define and run executable use case specifications, in your code.
package org.requirementsascode.systemreaction;
import java.util.Objects;
import java.util.function.Consumer;
import org.requirementsascode.ModelRunner;
public abstract class AbstractContinues implements Consumer {
private String stepName;
public AbstractContinues(String stepName) {
Objects.requireNonNull(stepName);
this.stepName = stepName;
}
public String getStepName() {
return stepName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy