example.Belly Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-cucumber Show documentation
Show all versions of rest-cucumber Show documentation
Rest Cucumber allows you to attach a rest client for retrieval of Cucumber feature files and posting of Cucumber test results
package example;
public class Belly {
private int cukesInBelly = 0;
public void eat(int cukes) {
cukesInBelly = cukes;
}
public void waitAnHour(int cukes) {
cukesInBelly = cukes;
}
public void growl() {
cukesInBelly = 10;
}
public int getCukesInBelly() {
return cukesInBelly;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy