I am learning BDD with ASP.NET MVC and based upon a post from Steve Sanderson understand that BDD can be at least of the following two types:
- Individual code units: in which case you’ll probably use a context/specification style framework MSpec.
- UI interactions: Use a given/when/then tool such as SpecFlow with Browser Automation tool like Watin.
I understand that this might be Steve's preference, but something similar is also mentioned in this post.
Does this mean that I need atleast two different BDD frameworks if I need both unit and integration testing:
- For testing my individual repositories, controllers, services and other methods, I should use something like MSpec. The results of testing with this will be useful to the development team.
- For testing the complete behaviour (integration testing), I should use something like SpecFlow with Watin. The results of this testing will be useful for my client
The videos I have seen so far on using BDD have only been limited to testing the behaviour of entities without testing the behaviour of repositories, controllers, etc... Is there a sample project where I can see both automated Unit and Integration testing using a BDD approach?