NUnit, MbUnit, or VSTSUnit (aka MSTest.exe) have similar syntax, which makes it easy to switch between one framework and another. Switching from NUnit to MbUnit is as simple as replacing: using NUnit.Framework; with: using MbUnit.Framework; Switching the other way is just as easy as long as you haven’t used any MbUnit-specific features such as RowTest. […]