dev.galasa.framework.spi.RunResult Maven / Gradle / Ivy
/*
* Copyright contributors to the Galasa project
*
* SPDX-License-Identifier: EPL-2.0
*/
package dev.galasa.framework.spi;
import java.util.List;
import dev.galasa.framework.spi.ras.Artifact;
import dev.galasa.framework.spi.teststructure.TestStructure;
public class RunResult {
private String runId;
private TestStructure testStructure;
private List artifacts;
public RunResult(String runId, TestStructure testStructure, List artifacts) {
this.runId = runId;
this.testStructure = testStructure;
this.artifacts = artifacts;
}
public void setRunId(String runId) {
this.runId = runId;
}
public void setTestStructure(TestStructure testStructure) {
this.testStructure = testStructure;
}
public void setArtifacts(List artifacts) {
this.artifacts = artifacts;
}
public String getRunId() {
return this.runId;
}
public TestStructure getTestStructure() {
return this.testStructure;
}
public List getArtifacts(){
return this.artifacts;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy