PreviousNext

When to Mock

by bill-s, 2020-04-17T01:50:37.173Z

The use of mocks in unit testing is a controversial topic (maybe less so now than several years ago). I remember how, throughout my programming career, I went from mocking almost every dependency, to the "no-mocks" policy, and then to "only mock external dependencies". None of this practices are good enough. In this article, I’ll show you which dependencies to mock, and which to use as is in your tests.

Read More