org.testobject.appium.common.data.TestResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testobject-appium-java-api Show documentation
Show all versions of testobject-appium-java-api Show documentation
java wrapper for testobject's appium java apis
package org.testobject.appium.common.data;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class TestResult {
private final boolean passed;
@JsonCreator
public TestResult(@JsonProperty("passed") boolean passed) {
this.passed = passed;
}
public boolean isPassed() {
return passed;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy