Specflow、Watin、および Deleporter をいじり始めたところです。
テーブルデータを対応するテストに渡さないという点で、統合タイプのテストに問題があります。
Scenario: User tries to register and their email already exists
Given I have filled out the register page with the following data
| Name | Password | Nickname | Email |
| Sam | password1 | SamsNickname | email@email.com |
When I already have an account with the same email
| Name | Password | Nickname | Email |
| Sam | password1 | SamsNickname | email@email.com |
Then Show message that the account exists
[Given(@"I have filled out the register page with the following data")]
public void GivenIHaveFilledOutTheRegisterPageWithTheFollowingData(Table table)
{
var data = table.Rows.First();
}
私が抱えている問題は、上記の Table パラメータが null として渡されることです。私がここに欠けているものはありますか?