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

Java Cucumber does not recognize my string parameter

Cucumber 无法识别我想将其用作货币的 String 参数。它只识别 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();
}

可能是什么问题?

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

{string} Matches single-quoted or double-quoted strings, for example "banana split" or 'banana split' (but not banana split).

对于没有任何引号(也没有任何空格)的货币代码,您需要 {word},所以 :

 @When("I deposit {int} of {word}")