All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.testfabrik.webmate.javasdk.testmgmt.TestRunInfo Maven / Gradle / Ivy
package com.testfabrik.webmate.javasdk.testmgmt;
import com.fasterxml.jackson.annotation.JsonAlias;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.JsonNode;
import com.testfabrik.webmate.javasdk.ProjectId;
import com.testfabrik.webmate.javasdk.UserId;
import com.testfabrik.webmate.javasdk.browsersession.BrowserSessionId;
import com.testfabrik.webmate.javasdk.devices.DeviceDTO;
import com.testfabrik.webmate.javasdk.devices.DeviceId;
import com.testfabrik.webmate.javasdk.testmgmt.testtypes.TestType;
import org.joda.time.DateTime;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
/**
* Identifies TestRun in a Test.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class TestRunInfo {
private TestRunId testRunId;
private String name;
private TestExecutionId testExecutionId;
private UserId creator;
private ProjectId projectId;
private Optional output;
private DateTime startTime;
private Optional endTime;
private DateTime lastUpdateTime;
private TestRunEvaluationStatus evaluationStatus;
private TestRunExecutionStatus executionStatus;
private TestType testType;
private JsonNode issueSummary;
private List expeditions;
private JsonNode failure;
private List models;
private List devices;
// for jackson
private TestRunInfo() {}
@JsonProperty("testRunId")
@JsonAlias({"id"})
public TestRunId getTestRunId() {
return testRunId;
}
public String getName() {
return name;
}
public TestExecutionId getTestExecutionId() {
return testExecutionId;
}
public UserId getCreator() {
return creator;
}
public Optional getOutput() {
return output;
}
public ProjectId getProjectId() {
return projectId;
}
public DateTime getStartTime() {
return startTime;
}
public Optional getEndTime() {
return endTime;
}
public DateTime getLastUpdateTime() {
return lastUpdateTime;
}
public TestRunEvaluationStatus getEvaluationStatus() {
return evaluationStatus;
}
public TestRunExecutionStatus getExecutionStatus() {
return executionStatus;
}
public TestType getTestType() {
return testType;
}
public JsonNode getIssueSummary() {
return issueSummary;
}
public List getExpeditions() {
return expeditions;
}
public Optional getFailure() {
return Optional.ofNullable(failure);
}
public List getModels() {
return models;
}
public List getDevices() {
return devices;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TestRunInfo that = (TestRunInfo) o;
return Objects.equals(testRunId, that.testRunId) &&
Objects.equals(name, that.name) &&
Objects.equals(testExecutionId, that.testExecutionId) &&
Objects.equals(creator, that.creator) &&
Objects.equals(output, that.output) &&
Objects.equals(startTime, that.startTime) &&
Objects.equals(endTime, that.endTime) &&
Objects.equals(lastUpdateTime, that.lastUpdateTime) &&
evaluationStatus == that.evaluationStatus &&
executionStatus == that.executionStatus &&
Objects.equals(testType, that.testType) &&
Objects.equals(issueSummary, that.issueSummary) &&
Objects.equals(expeditions, that.expeditions) &&
Objects.equals(failure, that.failure) &&
Objects.equals(models, that.models);
}
@Override
public int hashCode() {
return Objects.hash(testRunId, name, testExecutionId, creator, output, startTime, endTime, lastUpdateTime, evaluationStatus, executionStatus, testType, issueSummary, expeditions, failure, models);
}
@Override
public String toString() {
return "TestRunInfo{" +
"testRunId=" + testRunId +
", name='" + name + '\'' +
", testExecutionId=" + testExecutionId +
", creator=" + creator +
", output=" + output +
", startTime=" + startTime +
", endTime=" + endTime +
", lastUpdateTime=" + lastUpdateTime +
", evaluationStatus=" + evaluationStatus +
", executionStatus=" + executionStatus +
", testType=" + testType +
", issueSummary=" + issueSummary +
", expeditions=" + expeditions +
", failure=" + failure +
", models=" + models +
", projectId=" + projectId +
'}';
}
}