Reputation: 4762
We have a huge application that contains
we wrote hundereds of unit test to avoid further problems. Now we want to write Integration Tests against database.
Until now we have been using xUnit for unit tests. But i couldn't be sure how can we go forward and i have some questions.
Not now but in near future we are going to run these tests with TFS 2012 builds.
Upvotes: 3
Views: 728
Reputation: 836
You should try Effort
It provides an in-memory database for Entity Framework by giving a special connection when creating your DbContext.
It also can populate the database with data from CSV files.
Upvotes: 1