We are using mstest for unit tests at our company. The main reason is that there is no free Visual Studio integration for MbUnit (TestDriven.NET is not free for companies).
Recently, I have stumbled upon a need to run the same unit tests on two different implementations of the same interface. From my past experience I know it is easy to do with MbUnit. But, how to do it with MSTest?
I stress the point that I need separate results for each interface, so, please, do not offer things like running the same method twice - once per interface - from the same unit test method, because doing so yields only one result.
I am aware of the data driven solution and using it now, but it is a pain in the a*s. Is there an easier way, the MbUnit way?
Thanks.