Как заставить cuke4duke найти определения шагов - PullRequest
0 голосов
/ 08 сентября 2011

Я настроил cuke4duke и Cucumber с maven и письменными файлами объектов и определений шагов.

Мой файл объектов находится по адресу [ProjectDir] \ features \ example2.feature

Feature: Example of a feature file
  As some aspiring cuke4duke user
  I want an example of how it works
  So that I can easily setup my project to use it

  # This should pass
  Scenario: A simple passing scenario
    Given the letter 'A'
    When I check the letter
    Then the letter should be 'A'

Myопределения шагов находятся по адресу [ProjectDir] \ src \ test \ java \ Example2Steps.java

package test.java;
import cuke4duke.annotation.I18n.EN.Given;
import cuke4duke.annotation.I18n.EN.Then;
import cuke4duke.annotation.I18n.EN.When;

import static org.junit.Assert.assertThat;
import static org.hamcrest.CoreMatchers.is;

public class Example2Steps {
    private char theLetter;

    @Given("^the letter 'A'$")
    public void gimmeALetter(final char theLetter) {
        this.theLetter = theLetter;
    }

    @When("^I check the letter$")
    public void checkThem() {
        // just a stub
    }

    @Then("^the letter should be 'A'$")
    public void checkTheLetter(final char aLetter) {
        assertThat(theLetter, is(aLetter));
    }
}

Когда я запускаю «mvn интеграционный тест» в директории проекта в командной строке Windows, он прекрасно собирается, но говоритчто сценарий и шаги не определены.

Вывод:

[INFO] [cuke4duke:cucumber {execution: run-features}]
[INFO] Feature: Example of a feature file
[INFO]   As some aspiring cuke4duke user
[INFO]   I want an example of how it works
[INFO]   So that I can easily setup my project to use it
[INFO]
[INFO]   # This should pass
[INFO]   Scenario: A simple passing scenario # features\example2.feature:7
[INFO]     Given the letter 'A'              # features\example2.feature:8
[INFO]     When I check the letter           # features\example2.feature:9
[INFO]     Then the letter should be 'A'     # features\example2.feature:10
[INFO]
[INFO] 1 scenario (1 undefined)
[INFO] 3 steps (3 undefined)
[INFO] 0m0.053s
[INFO]
[INFO] You can implement step definitions for undefined steps with these snippets:
[INFO]
[INFO] Given /^the letter 'A'$/ do
[INFO]   pending # express the regexp above with the code you wish you had
[INFO] end
[INFO]
[INFO] When /^I check the letter$/ do
[INFO]   pending # express the regexp above with the code you wish you had
[INFO] end
[INFO]
[INFO] Then /^the letter should be 'A'$/ do
[INFO]   pending # express the regexp above with the code you wish you had
[INFO] end
[INFO]
[INFO] If you want snippets in a different programming language, just make sure a file
[INFO] with the appropriate file extension exists where cucumber looks for step definitions.
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------

Насколько я могу читать где угодно, cuke4duke ищет определения шагов в [ProjectDir] \ src \ test \ java \,почему он не может найти мои определения?

1 Ответ

0 голосов
/ 09 сентября 2011

В конце это был неправильный случай в некоторых из моих тегов Maven pom, который вызвал ошибку. Я перепроверил мой POM и другие файлы проекта со следующими пример проекта, и теперь все это работает!

https://github.com/jamesladd/maven-cuke4duke-jump-start

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...