gpt4 book ai didi

java - 如何处理java中 cucumber 步骤的逻辑或运算

转载 作者:行者123 更新时间:2023-12-02 05:02:15 24 4
gpt4 key购买 nike

我有一个 Cucumber 步骤,我想根据 Cucumber 步骤中传递的语句来执行该步骤

verify word does exists in log
clear the logs

否则我可能会通过

verify word does not exists in log
not clear the logs

小 cucumber 是这样的

("^verify word does(not|) exists in log$")
("^(|not )clear the logs$")

我可以用 Java 处理这个问题吗?

我想根据我传递的 key 执行操作

最佳答案

我找到了解决方案,我已经用Java完成了,如下

 @Then("^verify word does(not|) exists in log$")
public void verifyLogs(String action) {

switch statement
code logic

//or
if(action.contains("not")){
code logic
}
}

关于java - 如何处理java中 cucumber 步骤的逻辑或运算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56380059/

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