I have a server application and I was wondering where I should start if I want to start implementing TDD and using Moq.
What good books I could read on the subject, wh
You don't mock the objects you want to test. If you do that, you're testing the mock, not your object! You need to mock the dependencies of the objects you're testing.