gpt4 book ai didi

java - 在 cucumber 测试中使用特征文件中的值?

转载 作者:行者123 更新时间:2023-11-29 04:50:53 25 4
gpt4 key购买 nike

有没有办法在特征文件中声明一个变量,然后在 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);
}

关于java - 在 cucumber 测试中使用特征文件中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35464036/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com