简单黄瓜测试 Class 通过,没有胶水文件
Simple Cucumber Test Class Passes with no Glue File
这个问题困扰了我半天。我似乎找不到问题所在。基本上我的工作区中有我的测试运行器、功能文件和步骤文件。 java 文件在同一个包中(即没有包)。
下面是我的TestRunner.java
import org.junit.Test;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(features = "test/resources/features", tags = { "~@Ignore" })
public class TestRunner {
@Test
public void feature() {
}
}
我的专题文件,helloWorld.feature
Feature: Simple Test Feature
Scenario: Run Scenario ONE
GIVEN step one
WHEN step two
THEN step three
和我的步骤文件 CucumberJava.java
,
import cucumber.api.java.en.Given;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;
public class CucumberJava {
@Given("^step one$")
public void step_one() {
System.out.println("step one");
}
@When("step two")
public void step_two() {
System.out.println("step two");
}
@Then("^step three$")
public void step_three() {
System.out.println("step three");
}
}
当我作为 JUnit 执行 TestRunner.java
时,一切都通过了,但我在控制台中得到以下信息:
0 Scenarios
0 Steps
0m0.000s
为什么?事实上,当我从项目中删除 CucumberJava.java
时,我得到了完全相同的输出。我错过了什么?
我也尝试在 TestRunner.java
代码中设置 glue
选项;还是一样的结果。
非常感谢您的帮助。
像 Given 等特征文件单词在你的特征文件中是大写的。他们需要像 Given ie 句子大小写。
Feature: Simple Test Feature
Scenario: Run Scenario ONE
Given step one
When step two
Then step three
此外,您可能需要将 'src' 附加到运行程序中的特征路径。像这样 features = "src/test/resources/features"
,如果你使用的是 Maven。也不需要在跑步者里面有一个 @Test annotation and method
。
这个问题困扰了我半天。我似乎找不到问题所在。基本上我的工作区中有我的测试运行器、功能文件和步骤文件。 java 文件在同一个包中(即没有包)。
下面是我的TestRunner.java
import org.junit.Test;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(features = "test/resources/features", tags = { "~@Ignore" })
public class TestRunner {
@Test
public void feature() {
}
}
我的专题文件,helloWorld.feature
Feature: Simple Test Feature
Scenario: Run Scenario ONE
GIVEN step one
WHEN step two
THEN step three
和我的步骤文件 CucumberJava.java
,
import cucumber.api.java.en.Given;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;
public class CucumberJava {
@Given("^step one$")
public void step_one() {
System.out.println("step one");
}
@When("step two")
public void step_two() {
System.out.println("step two");
}
@Then("^step three$")
public void step_three() {
System.out.println("step three");
}
}
当我作为 JUnit 执行 TestRunner.java
时,一切都通过了,但我在控制台中得到以下信息:
0 Scenarios
0 Steps
0m0.000s
为什么?事实上,当我从项目中删除 CucumberJava.java
时,我得到了完全相同的输出。我错过了什么?
我也尝试在 TestRunner.java
代码中设置 glue
选项;还是一样的结果。
非常感谢您的帮助。
像 Given 等特征文件单词在你的特征文件中是大写的。他们需要像 Given ie 句子大小写。
Feature: Simple Test Feature
Scenario: Run Scenario ONE
Given step one
When step two
Then step three
此外,您可能需要将 'src' 附加到运行程序中的特征路径。像这样 features = "src/test/resources/features"
,如果你使用的是 Maven。也不需要在跑步者里面有一个 @Test annotation and method
。