I am trying to create row tests using SpecFlow and the Microsoft built-in Test Framework, something along these lines:
Scenario Outline: Test Calculator Given I have entered <x> into the calculator And I have entered <y> into the calculator When I press add Then the result should be <result> on the screen Examples: | x | y | result| | 1 | 2 | 3| | 2 | 2 | 4|
The problem I am facing is that given any step in the Scenario Outline a separate step method is auto-generated for each value from the Examples table. I would like to be able to implement for each step a generic method receiving input values as parameters but it just does not seem to work.