Ok, I’m not a happy owner of Typemock, hence I can’t use it to mock extension methods. I will show you two really simple workarrounds for achieving this. I have some simple extension methods that extends IQueryable. One of the extensions is responsible for checking if a certain username allready is taken. The extension method … Continue reading »
Filed under Testing …
The Moq, mockingframework, and the tangling of Stubs and Mocks
When I need the powers of a Faking-framework I use the Moq-framework, which I use when I feel that it is to much work for creating a manual Fake (which I only do with stubs). There’s one thing that I really don’t like with Moq, the tangling of Mocks and Stubs. I like to see … Continue reading »
How-to test a project that is focused on SSIS
How-to test a project that is focused on SSIS Recently I have been working in a project where SSIS is the primary technology used for solve a business case where focus lies on data-processing. Normally I work with plain C# code and I like test driven development and I like the bi-product that comes with … Continue reading »