我想匹配以下任一BDD:
Then the response status should be "200"
Then response status should be "200"
我想制作“可选”。我希望这两个规则映射到SAME步骤。
这是我的尝试,但不起作用:
@Then("^(?:the | )response status should be \"([^\"]*)\"$")
public void the_response_status_should_be(String arg1) {
...
}
答案 0 :(得分:2)
答案 1 :(得分:1)
这可能有用...... "^(?:the )*response status should be \"([^\"]*)\"$"