在黄瓜测试中使用特征文件中的值?
Use a value in a feature file in a cucumber test?
有没有办法在功能文件中声明一个变量,然后在黄瓜测试中使用?像这样:
myFile.feature
Given whenever a value is 50
myFile.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);
}
有没有办法在功能文件中声明一个变量,然后在黄瓜测试中使用?像这样:
myFile.feature
Given whenever a value is 50
myFile.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);
}