vote up 0 vote down star

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.

flag

1  
In my experience most things are slower when using Resharper, which is a pity really, because apart from that it's a great add-in... – Fredrik Mörk Sep 15 at 21:23

2 Answers

vote up 3 vote down check

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

link|flag
1  
+1 for Jamie Cansdale's TestDriven.NET. It is a super piece of software. However, I find Resharper's test runner to be satisfactory when running smaller test suites. – Stuart Thompson Sep 15 at 21:30
vote up 4 vote down

I don't think the goal of Resharper was to provide a utility to execute an entire test suite from within Visual Studio. That is usually the goal of a build server or test suite server running continuous integration tools (like NUnit launched from CruiseControl)

The Resharper unit test runner appears best leveraged by running small sets of unit tests to diagnose and satisfy a particular unit of code. It allows you to create focused test suites that can be conveniently run from within the studio, debugged, repeated, and analyzed quickly without waiting for builds.

I would recommend leveraging a build server for running the complete suite of tests.

link|flag
2  
We are using a build server to run the tests, but our policy here is to try your best not to break the build before committing changes. So we typically run all the unit tests before a commit. – jamesaharvey Sep 15 at 21:32
R#'s test runner is very handy for quick debugging. To avoid breaking the build, you could use something like TeamCity's Personal Build or Pre-Commit options. See jetbrains.net/confluence/display/… Optionally, just run NUnit from the Tools menu. – TrueWill Sep 16 at 1:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.