From adc8c1ae538aed027d68ede88d39738672343131 Mon Sep 17 00:00:00 2001 From: Patrick <50352812+Mueller-Patrick@users.noreply.github.com> Date: Mon, 2 Nov 2020 13:07:54 +0100 Subject: [PATCH] Deleting demo cucumber files --- CucumberTests/src/test/java/RunTest.java | 2 +- .../test/java/stepdefs/DemoDefinitions.java | 49 ------------------- CucumberTests/src/test/resource/demo.feature | 12 ----- 3 files changed, 1 insertion(+), 62 deletions(-) delete mode 100644 CucumberTests/src/test/java/stepdefs/DemoDefinitions.java delete mode 100644 CucumberTests/src/test/resource/demo.feature diff --git a/CucumberTests/src/test/java/RunTest.java b/CucumberTests/src/test/java/RunTest.java index a7e37ea..1def072 100644 --- a/CucumberTests/src/test/java/RunTest.java +++ b/CucumberTests/src/test/java/RunTest.java @@ -4,7 +4,7 @@ import org.junit.runner.RunWith; @RunWith(Cucumber.class) @CucumberOptions( - features = {"src/test/resource/demo.feature"} + features = {"src/test/resource/searchProduct.feature"} ) public class RunTest { diff --git a/CucumberTests/src/test/java/stepdefs/DemoDefinitions.java b/CucumberTests/src/test/java/stepdefs/DemoDefinitions.java deleted file mode 100644 index 4e086a5..0000000 --- a/CucumberTests/src/test/java/stepdefs/DemoDefinitions.java +++ /dev/null @@ -1,49 +0,0 @@ -package stepdefs; - -import cucumber.api.PendingException; -import cucumber.api.java.en.Given; -import cucumber.api.java.en.Then; -import cucumber.api.java.en.When; - -public class DemoDefinitions { - - @Given("^I have a configured cucumber-jvm project$") - public void i_have_a_configured_cucumber_jvm_project() throws Exception { - // Write code here that turns the phrase above into concrete actions - //throw new PendingException(); - } - - @When("^I run it within my IDE$") - public void i_run_it_within_my_IDE() throws Exception { - // Write code here that turns the phrase above into concrete actions - //throw new PendingException(); - } - - @Then("^I will be able to run connected step definitions$") - public void i_will_be_able_to_run_connected_step_definitions() throws Exception { - // Write code here that turns the phrase above into concrete actions - //throw new PendingException(); - } - - @When("^the Maker starts a game$") - public void theMakerStartsAGame() { - } - - @Then("^the Maker waits for a Breaker to join$") - public void theMakerWaitsForABreakerToJoin() { - } - - @Given("^the Maker has started a game with the word \"([^\"]*)\"$") - public void theMakerHasStartedAGameWithTheWord(String arg0) throws Throwable { - // Write code here that turns the phrase above into concrete actions - //throw new PendingException(); - } - - @When("^the Breaker joins the Maker's game$") - public void theBreakerJoinsTheMakerSGame() { - } - - @Then("^the Breaker must guess a word with (\\d+) characters$") - public void theBreakerMustGuessAWordWithCharacters(int arg0) { - } -} diff --git a/CucumberTests/src/test/resource/demo.feature b/CucumberTests/src/test/resource/demo.feature deleted file mode 100644 index 5f22326..0000000 --- a/CucumberTests/src/test/resource/demo.feature +++ /dev/null @@ -1,12 +0,0 @@ -Feature: Guess the word - - # The first example has two steps - Scenario: Maker starts a game - When the Maker starts a game - Then the Maker waits for a Breaker to join - - # The second example has three steps - Scenario: Breaker joins a game - Given the Maker has started a game with the word "silky" - When the Breaker joins the Maker's game - Then the Breaker must guess a word with 5 characters