1

検索してみましたが、似たようなものは見つかりませんでした。以前にこのキュウリのエラーに遭遇した人はいますか?

cucumber.runtime.CucumberException: Arity mismatch: パターン [^(\d+) execution report messages are received with the following attributes$] を持つステップ定義 'ExecutionDownloadSteps.scala:50' が 0 パラメーターで宣言されています。ただし、ガーキンステップには2つの引数があります

機能ファイル句:

  When 5 execution report messages are received with the following attributes
     | MsgSeqNum | ExecTransType | PossDupFlag | TransactTime          |
     | 111       | 0             |             | 20140301-00:00:11.001 |

ステップ定義:

When( """^(\d+) execution report messages are received with the following attributes$""") {
    (numberOfExecutions: Int, dataTable: DataTable) =>

    //some codes
}
4

1 に答える 1

0

これは cucumber jvm 1.2.0 で修正されました。

于 2014-11-14T11:03:21.097 に答える