org.testobject.rest.api.model.TestCaseGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testobject-java-api Show documentation
Show all versions of testobject-java-api Show documentation
java wrapper for testobject's java apis
package org.testobject.rest.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class TestCaseGroup {
public final String className;
public final List testCases;
public TestCaseGroup(
@JsonProperty("className") String className,
@JsonProperty("testCases") List testCases) {
this.className = className;
this.testCases = testCases;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy