Replacing Typemock Fakes With Moq Mocks

2021-01-04 7 min read Code Example David Poxon

Recently, I had the pleasure of migrating some complex tests from TypeMock to Moq. I learned a lot in the process, and wanted to capture my learnings for others. This article is the first in a series I will be writing on migrating from TypeMock’s C# implementation to Moq. In this article I will discuss replacing TypeMock’s ‘fakes’ with Moq’s ‘mocks’.

Continue reading