在 Eclipse 中创建我的功能文件后,我将它作为 Cucumber 功能运行。我使用控制台给我的步骤定义来创建测试文件的第一个基础
@Given("^the input is <(\\d+)> <(\\d+)>$")
这些应该由控制台输出,但目前它显示的功能没有步骤定义。
Feature: this is a test
this test is to test if this test works right
Scenario: test runs # src/test/resources/Test.feature:4
Given: i have a test
When: i run the test
Then: i have a working test
0 Scenarios
0 Steps
0m0,000s
此功能只是为了检查黄瓜是否正常工作。
跑步者:
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
monochrome = true,
dryRun = false,
format = "pretty",
features = "src/test/resources/"
)
public class RunCukes {
}
控制台未显示所有信息的原因可能是什么?
TL:DR 控制台不显示缺少步骤的步骤正则表达式
编辑:添加功能文件
Feature: this is a test
this test is to test if this test works right
Scenario: test runs
Given: i have a test
When: i run the test
Then: i have a working test