Java Cucumber 无法识别我的字符串参数

问题描述 投票:0回答:1

Cucumber 无法识别我想将其用作货币的字符串参数。它只识别 int 值。 (它找到步骤,因为其他步骤有效)

@When("I deposit {int} of {string}")
public void testDeposit(int value, String currency) throws ClientProtocolException, IOException {

它显示以下错误消息:

There were undefined steps. You can implement missing steps with the snippets below:

@When("I deposit {int} of GBP")
public void i_deposit_of_GBP(Integer int1) {
    // Write code here that turns the phrase above into concrete actions
    throw new cucumber.api.PendingException();
}

@Then("My balance is {int} of GBP")
public void my_balance_is_of_GBP(Integer int1) {
    // Write code here that turns the phrase above into concrete actions
    throw new cucumber.api.PendingException();
}
  • 鉴于我创建了一个帐户
  • 当我存入 100 英镑时
  • 那么我的余额是 100 英镑

可能是什么问题?

java junit cucumber cucumber-java cucumber-junit
1个回答
11
投票

来自 https://cucumber.io/docs/cucumber/cucumber-expressions/

{string} 匹配单引号或双引号字符串, 例如“香蕉船”或“香蕉船”(但不是香蕉船)。

对于没有任何引号(也没有任何空格)的货币代码,您需要

{word}
,所以:

 @When("I deposit {int} of {word}")
© www.soinside.com 2019 - 2024. All rights reserved.