Using Moq and TDD, where to start?

后端 未结 4 2200
灰色年华
灰色年华 2021-02-14 10:45

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

4条回答
  •  忘了有多久
    2021-02-14 11:08

    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.

提交回复
热议问题