I am using specflow to specify my app, and it just saved me from doing really bad stuff, so I really like it :-) However I have a problem with with the coupling between steps: For instance since I am using mocks heavyly in one step I tell the mock that it should return an entity, but in another i tell the mock to return the same entity, but with another property.
Look at this step (stolen from Darrens answer below and modified):
Given a guy the following guy exists:
| Name | Age | Salary |
| John Doe | 42 | 400 |
When his salary changes to 420
And I run the paycheck program
Then he should be paid 420
See here I start with a Guy object and later modify the object - which is the thing I am testing.
So I put an entity into the mock repository, then in another step I pull it out and put it in again. How do you guys avoid high coupling and reusabibility between steps?
Of course I could keep a local variable on the scenario class and put all the entities in that variable, but I would then couple the steps.