com.applitools.eyes.visualgridclient.model.TestResultContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java3 Show documentation
Show all versions of eyes-common-java3 Show documentation
Common code for Applitools Eyes Java SDK projects
package com.applitools.eyes.visualgridclient.model;
import com.applitools.eyes.TestResults;
public class TestResultContainer {
private TestResults testResults;
private Error exception;
public TestResultContainer(TestResults testResults, Error exception) {
this.testResults = testResults;
this.exception = exception;
}
public TestResults getTestResults() {
return testResults;
}
public Error getException() {
return exception;
}
@Override
public String toString() {
return (testResults == null ? "" : testResults.toString()) + " - " + (exception == null ? "" : exception.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy