Alex from Jitbit
Alex from Jitbit

Reputation: 60642

"Test with debugger" in ReSharper?

"TestDriven.NET" has a great feature called "test with debugger". Is there anything like this in ReSharper?

Tried googling this, but can't find anything.

Upvotes: 2

Views: 198

Answers (3)

Serge Shultz
Serge Shultz

Reputation: 6068

Just wanted to add, that in VS2012 there's now a built-in feature "Debug selected test". It does exactly the same.

PS. Actually, I (personally found that vs2012 is so good it almost doesn't need Resharper or Productivity-Power-Tools... It's quite good out of the box.. Sorry, just a personal opinion.

Upvotes: 1

jazzcat
jazzcat

Reputation: 4441

ReSharper does not have this exact feature. You have to stick with TestDriven.NET for this feature. Or better add full-blown tests to your project, and then you'll be able to run them in debugger (via ReSharper).

Upvotes: 3

Jonathan
Jonathan

Reputation: 5993

If you mean, can you run a test in debug with breakpoints then yes you can do that in ReSharper.

http://www.jetbrains.com/resharper/features/unit_testing.html

Upvotes: 8

Related Questions