ru.yandex.qatools.allure.events.TestRunStartedEvent Maven / Gradle / Ivy
package ru.yandex.qatools.allure.events;
import java.lang.annotation.Annotation;
import java.util.Collection;
/**
* @author Dmitry Baev [email protected]
* Date: 11.11.13
*/
public class TestRunStartedEvent implements Event {
private String uid;
private String testRunName;
private Collection annotations;
public TestRunStartedEvent(String uid, String testRunName, Collection annotations) {
this.uid = uid;
this.testRunName = testRunName;
this.annotations = annotations;
}
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public String getTestRunName() {
return testRunName;
}
public void setTestRunName(String testRunName) {
this.testRunName = testRunName;
}
public Collection getAnnotations() {
return annotations;
}
public void setAnnotations(Collection annotations) {
this.annotations = annotations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy