Author Archives: erictummers

Unknown's avatar

About erictummers

Working in a DevOps team is the best thing that happened to me. I like challenges and sharing the solutions with others. On my blog I’ll mostly post about my work, but expect an occasional home project, productivity tip and tooling review.

Structuremap interferes with nServicebus EndpointName configuration

When creating a nServiceBus host with an EndpointName in the configuration be warned for this structuremap interference. See the repro code below of a bug we recently fixed. The messages and handlers are left out of the sample for simplicity. … Continue reading

Posted in Development | Tagged , , | Leave a comment

Partial subs with nsubstitute

Finally got the hang of partial s(t)ubs with nsubstitute. The key is that the original method is called when setting up the sub. To avoid this use argument matchers and the DoNotCallBase() method. Property To test/setup the property to return … Continue reading

Posted in Test | Tagged , , | 2 Comments

Week 25 roundup

Last week recap and links: Colleague Robbert wrote about CSRF attacks for dummies Cleanup your azure with this Azure websites in-depth article. Moved some of my websites to other hosting plans. Entity Framework Concurrency Checking with Timestamp helped solve a … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

How to convince developers and managers to do TDD

Questions and answers when introducing test driven development Continue reading

Posted in Test | Tagged , , | Leave a comment

GIT code review in visualstudio.com

In the 10 June update of Visual Studio Online the Review and Merge code with Pull Requests feature was added. This means code review for GIT is finally here. Prepare for code review We use SourceTree with GitFlow. I’ve created … Continue reading

Posted in Development | Tagged , , , , | Leave a comment