I’m a big advocate of automated software testing with tools like the venerable JUnit for Java and the similar NUnit for the .NET languages such as C#.
Yesterday I was implementing some NUnit tests for a C# database access object (or DAO). If you have ever implemented such tests before you’ll probably agree with me that it’s important for your test data to be in a known and consistent state before every test run.
For example, let’s
[...Continue reading » XtUnit Troubleshooting]