Created
December 2, 2013 00:57
-
-
Save codingricky/7743214 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
You can implement missing steps with the snippets below: | |
@Given("^I have setup Play$") | |
public void I_have_setup_Play() throws Throwable { | |
// Express the Regexp above with the code you wish you had | |
throw new PendingException(); | |
} | |
@When("^I go to the landing page$") | |
public void I_go_to_the_landing_page() throws Throwable { | |
// Express the Regexp above with the code you wish you had | |
throw new PendingException(); | |
} | |
@Then("^the title should be \"([^\"]*)\"$") | |
public void the_title_should_be(String arg1) throws Throwable { | |
// Express the Regexp above with the code you wish you had | |
throw new PendingException(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment