org.testobject.appium.common.data.TestReport 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 TestReport {
public static class Id extends org.testobject.appium.common.data.Id {
public Id(Integer value) {
super(value);
}
}
private final Id id;
private final Test test;
@JsonCreator
public TestReport(@JsonProperty("id") Id id, @JsonProperty("test") Test test) {
this.id = id;
this.test = test;
}
public Id getId() {
return id;
}
public Test getTest() {
return test;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy