Building a Custom NUnit Runner

On my way to “debugging” NUnit Tests with Enterprise Architect. I ran into issues with the NUnit Console runner – EA’s Debugger wouldn’t properly attach to it. So I started investigating how I could make a very very simple NUnit runner to help me on that. During my...

Integrate MsTest with MsBuild into Teamcity

If you choose to run Teamcity with a .sln you have an almost automatic integration into Teamcity that can be configured from the web interface. For most stuff I end up needing a MsBuild Script to get all the Tasks done required for our Builds. If you choose MsBuild as...

Unittests für Events und andere async Calls

Diese Woche habe ich was Neues gemacht! Mit Hilfe von Klaus T. habe ich meinen ersten UnitTest für einen Event geschrieben. Ist ja schon fast ein Pattern 😉 [Test] public void EventIsWorking() {       EventReturn eventReturn=EventReturn.UnDefined;       IEventSource...