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