de.dagere.kopeme.kopemedata.TestMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kopeme-core Show documentation
Show all versions of kopeme-core Show documentation
KoPeMe performance testing core
package de.dagere.kopeme.kopemedata;
import java.util.LinkedList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class TestMethod {
private final String method;
private List datacollectorResults = new LinkedList<>();
public TestMethod(@JsonProperty("method") String method) {
this.method = method;
}
public String getMethod() {
return method;
}
public List getDatacollectorResults() {
return datacollectorResults;
}
public void setDatacollectorResults(List datacollectorResults) {
this.datacollectorResults = datacollectorResults;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy