Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So i'm using MonoDevelop (for some MonoTouch R&D) and have a Unit Testing class library using NUnit.

I have a single [TestFixture] and a couple of [Test] classes. I can run all the tests in one single go .. but i have no idea how i can DEBUG (as in, breakpoint + step through) an individual one.

How can I do this, please?

share|improve this question
Did you come across with the below article? codeproject.com/Articles/34161/… See the "Points of Interests" and may be tirania.org/blog/archive/2009/Feb-19-1.html – Raj Jun 30 '12 at 14:37

1 Answer

up vote 1 down vote accepted

If you have a regular NUnit test class library in MonoDevelop, you should be able to use the Mono Soft Debugger on individual tests.

In the Unit Tests tab, select the test that you want to debug and right-click on the test. Select Run Test With > Mono Soft Debugger:

enter image description here

Now, you should be able to step through the test code as desired:

enter image description here

This has been tested on a recent version, 3.0, of MonoDevelop.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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