I'm using MSTest to retrofit unit testing in our application. A number of our tests will use a mocked list of objects (classes) that would normally come from our database. I'd like to save this list in the test project and then read the list, as necessary, for each test that needs it. Is there a best practice for doing this? BTW, these lists could contains hundreds or thousands of items.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
For such cases, I would use data driven tests. Look at the example at msdn site http://msdn.microsoft.com/en-us/library/ms182527.aspx |
|||
|
|
|
There are two solutions at least Deserialize JSON to domain objectsUsing library Json.Net you could deserialize text file contains JSON into hierarhy of objects
See complete example here Benefits
Drawbacks
NDbUnit is a .NET library for managing database state during testingIn case if you involved ORM during your tests, you could load data using NdbUnit to SQLite from XML file that created according to database XSD
See complete example here Benefits
Drawbacks
|
|||
|
|
