I was using aps.net mvc unit test, and want to create fake data instead of using real database connection, but the Linq query code and real database was huge and complicated, create fake data in unit test which can mimic real database was a huge job! Who knows some tools can help me to create fake data and mimic real database? T开发者_如何学JAVAhanks!
Check the Isolator, it has the ability to mock almost everything including asp.net MVC, I think it will fit your needs. You can examine the ASP.NET MVC mocking here.
Check out this Object Hydrator on CodePlex.
精彩评论