Package cucumber
Class StepDefs
- java.lang.Object
-
- cucumber.StepDefs
-
public class StepDefs extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
StepDefs.ExitException
-
Constructor Summary
Constructors Constructor Description StepDefs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
an_and(Integer issueNumber, Integer count, String datasrc)
void
an_and(Integer issueNumber, String datasrc)
void
compare_to_the()
void
compare_to_the(String expectation)
void
execute_validate(String args)
void
makeSink()
List<String>
resolveArgumentStrings(String args, boolean noReportInArgs)
-
-
-
Method Detail
-
makeSink
public void makeSink() throws IOException
- Throws:
IOException
-
resolveArgumentStrings
public List<String> resolveArgumentStrings(String args, boolean noReportInArgs)
-
an_and
@Given("validate issue {int} and test data at {string}") public void an_and(Integer issueNumber, String datasrc)
-
an_and
@Given("validate issue {int}, test {int}, and test data at {string}") public void an_and(Integer issueNumber, Integer count, String datasrc)
-
execute_validate
@When("execute validate with {string}") public void execute_validate(String args)
-
compare_to_the
@Then("compare to the expected outcome .") public void compare_to_the()
-
compare_to_the
@Then("compare to the expected outcome {string}.") public void compare_to_the(String expectation)
-
-