After writing unit tests for awhile, you will observe there are common patterns and common needs. One way to fulfill some of these needs is to use a “test base class” or an “abstract test class”. Using such a pattern for MSTest can help you create more robust unit tests with less code. The concept is...