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