私はcucumber-jvmを使用しています。.feature ファイルに次のものがあります。
Background:
Given the following account file line:
| First Name | Lance |
| Last Name | Fisher |
| Corporate Name | |
縦向きのテーブルです。次の生成されたステップ定義は、First Name と Lance をヘッダーとして使用します。ここで、First Name、Last Name、および Corporate Name をヘッダーにする必要があります。
@Given("^the following account file line:$")
public void the_following_account_file_line(DataTable arg1) throws Throwable {
// Express the Regexp above with the code you wish you had
// For automatic conversion, change DataTable to List<YourType>
throw new PendingException();
}
水平テーブルではなく垂直テーブルを処理するには、ステップ定義をどのように実装しますか?