com.saucelabs.rdc.model.TestReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdc-appium-junit4 Show documentation
Show all versions of rdc-appium-junit4 Show documentation
Library for running Appium test suites and updating test status on Sauce Labs Real Device Cloud (RDC)
The newest version!
package com.saucelabs.rdc.model;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class TestReport {
private final int id;
private final RdcTest test;
@JsonCreator
public TestReport(@JsonProperty("id") int id, @JsonProperty("test") RdcTest test) {
this.id = id;
this.test = test;
}
public int getId() {
return id;
}
public RdcTest getTest() {
return test;
}
}