Dennis van der Stelt Blog
This blogpost is part of a series Template Method Pattern explanation Template Method Pattern example Template Method Pattern advanced So we’ve looked at the Template Method Pattern with an implementation as really simple example,...
This blogpost is part of a series Template Method Pattern explanation Template Method Pattern example Template Method Pattern advanced So in my previous post I explained how I change the template method pattern a...
This blogpost is part of a series Template Method Pattern explanation Template Method Pattern example Template Method Pattern advanced I’ve recently read a post about someone who hated the Template Method Pattern, because its...
DISCLAMER : Do NOT do this! It’s bad! This article is just here for reference. But seriously, do not do this!!! You will get hurt! Now let’s get to the original article…
How do I test a method that returns void? For example a method like this. public void Process(int leadId) { decimal price = _calculator.CalculateNormalLead(leadId); Lead lead = new Lead(leadId, price); _leadRepository.Save(lead); } How to...
I’ve written about transactions, the TransactionScope in .NET before. System.Transactions : An introduction System.Transactions : Unit Testing System.Transactions : Promotable Enlistment System.Transactions still not working System.Transactions : Read Uncommitted System.Transactions : What to choose?...
There are probably uncountable amount of articles, posts and arguments on to why Unit Testing is so valuable. I just found a nice example that would’ve (or at least should’ve) been caught using Unit...
In July a new update was provided to the Scrum Guide by Jeff Sutherland and Ken Schwaber. There are a few adjustments that are really nice, for example project grooming was added. One quote...
When starting to dig into nServiceBus, you’ll notice almost every single example is executed via the NServiceBus.Host.exe instead of doing it in-process. In my opinion this might be more likely on the receiving side...
Some time ago now I wrote about doing manual ClickOnce deployment using the command line and FinalBuilder. One of my readers posted a reaction about the following error. The customHostSpecified attribute is not supported...
Recent Comments