Welcome to Geekdojo Sign in | Join | Help
"Driving a project from bug data alone is like driving a car with your eyes closed and only turning the wheel when you hit something." - Sam Guckenheimer I was reading Guckenheimer's book, Software Engineering with Microsoft Visual Studio Team System, Read More
Apparently, Nunit runs the tests in alphabetical order by test name. I thought I was being smart by saving off references to the Ids and such. That’s OK, workaround number one: write test functions this way if you want them executed in a defined order: Read More
I've been playing with some code lately and writing unit tests using NUnit. I wanted to keep my test classes out of my released code, so I decorated the class with the #if (debug) directive (and corresponding #endif or course) and that works Read More