有没有办法在功能文件中声明一个变量,然后在黄瓜测试中使用?像这样的东西:
我的文件功能
Given whenever a value is 50
我的文件.java
@Given("^whenever a value is 50$")
public void testing(value) {
assertEqual(value, 50);
}
老实说,我什至不知道这会是什么样子。但我希望不必在功能文件和 Cucumber 测试中都声明一个值。谢谢!
有没有办法在功能文件中声明一个变量,然后在黄瓜测试中使用?像这样的东西:
我的文件功能
Given whenever a value is 50
我的文件.java
@Given("^whenever a value is 50$")
public void testing(value) {
assertEqual(value, 50);
}
老实说,我什至不知道这会是什么样子。但我希望不必在功能文件和 Cucumber 测试中都声明一个值。谢谢!
是的你可以!在特征中写下 Given-step。
Feature: foobar
Scenario: something
Given whenever a value is 50
然后将其作为 JUnit 测试运行。您将在控制台中看到类似的内容。
@Given("^whenever a value is (\\d+)$")
public void whenever_a_value_is(int arg1) throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
然后您可以复制+粘贴并将其更改为:
@Given("^whenever a value is (\\d+)$")
public void whenever_a_value_is(int value) {
assertEquals(value, 50);
}