-
Today I was trying to debug an issue with some new code that we are working on. During my initial development all my tests worked and everything was fine. However, when I actually hooked up all the pieces and tried to run the new code as a full unit I was receiving the dreaded “ StructureMap...
-
What do you do when you are writing a test for a piece of code that calls out to an ‘out of your control’ service such as a web service or email server? If you are like most of us, you simply allow your test to make the call and ‘hope’ that the service is up. However, this is really bad. Having your...
-
Have ever wanted to use a concrete class as both the the PluginFamily and Plugable (information on StructureMap's attributes here ) type in StructureMap ? I know I have, just today in fact (not the first time, but thought I would post about it this time) I needed to do just this. Why would I want to...