2

いくつかの機能に対していくつかのステップ定義クラスを作成しようとしています。それは私のプロジェクト構造です:

.
├── CucumberPOC.iml
└── src
    └── test
        ├── CucumberRunner.java
        └── features
            ├── CheeseStepDefinition.java
            ├── StepDefinition.java
            ├── cheese.feature
            └── myfeature.feature

CucumberRunner.java クラスです。

package test;

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@CucumberOptions(
        format = {" pretty", "json:target/cucumber.js"},
        features = { "src/test/" }
)
public class CucumberRunner {
}

ステップ定義クラスには 2 つあります。Cheese.feature を実行すると、エラーが発生しました。

/Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home/bin/java ...
Testing started at 9:26 AM ...

Undefined step: Given  I go to google

Undefined step: When  I ask for cheese

Undefined step: Then  I should see many offers


1 scenario (0 passed)


3 steps (0 passed)


1 Scenarios (1 undefined)
3 Steps (3 undefined)
0m0.000s


You can implement missing steps with the snippets below:

@Given("^I go to google$")
public void I_go_to_google() throws Throwable {
    // Express the Regexp above with the code you wish you had
    throw new PendingException();
}

@When("^I ask for cheese$")
public void I_ask_for_cheese() throws Throwable {
    // Express the Regexp above with the code you wish you had
    throw new PendingException();
}

@Then("^I should see many offers$")
public void I_should_see_many_offers() throws Throwable {
    // Express the Regexp above with the code you wish you had
    throw new PendingException();
}


Process finished with exit code 0

ただし、ステップは CheeseStepDefinition で定義されています。

package test.features;

import cucumber.api.java.en.Given;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;

public class CheeseStepDefinition {

    WebDriver driver = null;

    @Given("^I go to google$")
    public void I_go_to_google() throws Throwable {
        driver = new HtmlUnitDriver();
        driver.get("http://www.google.com");
    }

    @When("^I ask for cheese$")
    public void I_ask_for_cheese() throws Throwable {
        WebElement search = driver.findElement(By.name("q"));
        search.sendKeys("cheese");
        search.submit();
    }

    @Then("^I should see many offers$")
    public void I_should_see_many_offers() throws Throwable {
        System.out.println(driver.getTitle());
        driver.close();
    }
}

したがって、キュウリ Java がそれをステップ定義と見なさない理由がわかりません。他の構成を行う必要がありますか? myfeature.feature を実行すると、すべて問題ありません。

ツール情報

私はこの瓶を使用しています:

.
├── cucumber-core-1.1.5.jar
├── cucumber-html-0.2.3.jar
├── cucumber-java-1.1.5.jar
├── cucumber-junit-1.1.5.jar
├── cucumber-jvm-deps-1.0.5.jar
├── gherkin-2.12.1.jar
├── hamcrest-all-1.3.jar
├── jsoup-1.8.3.jar
├── junit-4.12.jar
└── selenium-server-standalone-2.47.1.jar

IDE は、Mac 上の Intellij 14.1 コミュニティです。

他に情報が必要な場合はお知らせください。

4

2 に答える 2

1

きゅうりオプションで「接着剤」オプションを定義する必要があります。

ランナーで、接着剤と機能の場所を定義します。>>> Glue はステップ定義で、feature は機能です。

あなたの場合、ステップ定義は機能と同じ場所にありますが、それをランナーに伝える必要があります。

あなたの場合、それはあるべきです

@CucumberOptions(
    format = {" pretty", "json:target/cucumber.js"},
    features = { "src/test/"}, glue ={ "src/test/"  })

よろしく、

于 2016-06-23T10:55:31.733 に答える