How can I mock the database calls to make my application logic been tested without database?
|
1
|
|
|
|
|
|
Then call GetData and use that chunck of data that you needed defined for your logic anyway. Later, change GetData to really get data from the database. Right now, just fake it, and assign it reasonable data by hand. |
||
|
|
|
|
Use the repository pattern and mock it in your tests using a mocking framework such as MoQ. Edit: check out this article by Stephen Walther on MoQ. |
||||
|
|
|
Repository pattern with a hardcoded implementation or use an XML file (my preference). |
||
|
|
|
|
Hope this article by Stephen Walther helps.. This article walks the reader through the process of using mocks for unit testing. This is a detailed article and pretty good one. It also has an example of the Repository pattern highlighted by some community members. |
||
|
|
