package {{basePackage}}.cucumber; import cucumber.api.java.After; import cucumber.api.java.Before; import cucumber.api.java.en.Given; import cucumber.api.java.en.Then; import cucumber.api.java.en.When; import cucumber.api.PendingException; public class {{serviceName}}Steps { @Given("^I want to write a step with precondition$") public void i_want_to_write_a_step_with_precondition() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @Given("^some other precondition$") public void some_other_precondition() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @When("^I complete action$") public void i_complete_action() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @When("^some other action$") public void some_other_action() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @When("^yet another action$") public void yet_another_action() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @Then("^I validate the outcomes$") public void i_validate_the_outcomes() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @Then("^check more outcomes$") public void check_more_outcomes() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @Given("^I want to write a step with name(\\d+)$") public void i_want_to_write_a_step_with_name(int arg1) throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @When("^I check for the (\\d+) in step$") public void i_check_for_the_in_step(int arg1) throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @Then("^I verify the success in step$") public void i_verify_the_success_in_step() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } @Then("^I verify the Fail in step$") public void i_verify_the_Fail_in_step() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException(); } }