Resharper Unit Test Runner significantly slower than NUnit console

nunitresharperunit testingvisual studio

Resharper Unit Test Runner runs significantly slower than nunit-console or nunit gui.

For example, 3800 tests take just over 60 seconds via nunit-console, but those same tests take over 5 minutes to run in Resharper Unit Test runner. Why such a significant difference?

Since our test code base has grown significantly, this is really starting to slow us down. Has anyone else experienced similar problems? How have you dealt with it?

The Resharper Visual Studio integration is really nice, however we might need to resort to something else.

Best Answer

I had the same issue and I switched to TestDriven.Net, it's lightning fast.

Related Topic