io.blitz.curl.TestEntity Maven / Gradle / Ivy
The newest version!
package io.blitz.curl;
import java.util.Collection;
/**
* Base class for the Blitz curl tests.
* @author ghermeto
*/
public class TestEntity {
/**
* Sequential test steps
*/
private Collection steps;
/**
* Region from which the test should start
*/
private String region;
/**
* Getter for the region property
* @return region
*/
public String getRegion() {
return region;
}
/**
* Setter for the region property
* @param region
*/
public void setRegion(String region) {
this.region = region;
}
/**
* Getter for the list of test steps
* @return collection of steps
*/
public Collection getSteps() {
return steps;
}
/**
* Setter for the list of test steps
* @param steps
*/
public void setSteps(Collection steps) {
this.steps = steps;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy