ru.yandex.qatools.allure.events.StepStartEvent Maven / Gradle / Ivy
package ru.yandex.qatools.allure.events;
/**
* @author Dmitry Baev [email protected]
* Date: 11.11.13
*/
public class StepStartEvent implements Event {
private String stepTitle;
public StepStartEvent(String stepTitle) {
this.stepTitle = stepTitle;
}
public String getStepTitle() {
return stepTitle;
}
public void setStepTitle(String stepTitle) {
this.stepTitle = stepTitle;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy