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

org.testobject.rest.api.model.TestCaseGroup Maven / Gradle / Ivy

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