All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testobject.appium.common.data.TestReport Maven / Gradle / Ivy

There is a newer version: 0.2.7
Show newest version
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