com.capitalone.dashboard.model.TestCaseCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
public class TestCaseCondition {
private String condition;
private TestCaseConditionResult result;
public String getCondition() {
return condition;
}
public void setCondition(String condition) {
this.condition = condition;
}
public TestCaseConditionResult getResult() {
return result;
}
public void setResult(TestCaseStatus status, long duration) {
TestCaseConditionResult result = new TestCaseConditionResult();
result.setDuration(duration);
result.setStatus(status);
this.result = result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy