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