While writing some code I needed to be able to access the the App_Data directory in my ASPNET MVC app. Doing this usually involves a Server.MapPath, but this wont work for my unit test. Here’s how …
IoC Auto Registration & Setter Injection
This post might be useful if you perform auto-registration of your components through an interface. Like this: …
Continue Reading about IoC Auto Registration & Setter Injection →
Featured in the Spaghetti Code Podcast
I was recently interviewed on the Spaghetti Code Podcast, hosted by Microsoft’s Jeff Brand. Jeff and I talked about Mocking and how it relates to the development process, testing process and your …
Continue Reading about Featured in the Spaghetti Code Podcast →
How to Use Rhinos AssertWasNotCalled
At times in the testing process you want to make sure that a certain method on a mocked object _does_not_ get called. For example, perhaps you’re performing some validation on a object and the object …
Continue Reading about How to Use Rhinos AssertWasNotCalled →
ASP.NET App – is not a valid Win32 application
Never seen this one before until this morning. Well, I’ve seen the “not a valid Win32 application” error a ton of times, but this is the first time on with an ASP.NET app (running MVC). How …
Continue Reading about ASP.NET App – is not a valid Win32 application →
An Exercise in Managing the Measurements
I’m a firm believer in the phrase: “What gets measured gets managed.” When it comes to unit testing code coverage is something we can use to measure how much of our code is under test. By no …
Continue Reading about An Exercise in Managing the Measurements →