![JAR search and dependency download from the Maven repository](/logo.png)
com.qaprosoft.zafira.models.push.TestRunPush Maven / Gradle / Ivy
package com.qaprosoft.zafira.models.push;
import com.qaprosoft.zafira.models.db.TestRun;
public class TestRunPush extends AbstractPush {
private TestRun testRun;
public TestRunPush(TestRun testRun) {
super(Type.TEST_RUN);
this.testRun = testRun;
}
public TestRun getTestRun() {
return testRun;
}
public void setTestRun(TestRun testRun) {
this.testRun = testRun;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy