delete
delete

Reputation:

Can I run NUnit tests from within Visual Studio 2010?

Is there an addon of some kind that will let me run and view results from inside Visual Studio? I remember there was some sort of icon with a red rocket ship on it. Any suggestions? Can't remember the name.

I don't want to use NUnit Gui if I can help it.

Upvotes: 19

Views: 6848

Answers (4)

Morten
Morten

Reputation: 3854

Resharper has a test runner. As a bonus you get a load of refactoring possibilities that makes you wonder how you programmed before Resharper... And no, this is not an ad, I am just a big supporter :-)

Upvotes: 1

BlackWasp
BlackWasp

Reputation: 4971

TestDriven.NET is the tool you are using. There are alternatives though. I've recently started using NCrunch, as it gives the same type of functionality as TestDriven, plus it gives continuous testing, which I've found really useful.

Upvotes: 2

Luke Bennett
Luke Bennett

Reputation: 32906

Sounds like you're looking for TestDriven.Net. There are other alternative test runners to the NUnit GUI too, such as Resharper and Gallio.

Upvotes: 19

Darren
Darren

Reputation: 971

As an alternative to TestDriven.Net there's always the test runners in products like CodeRush or Resharper.

Upvotes: 1

Related Questions