views:

34

answers:

1

I have some code that is failing tests, but I can't understand why. I made the error of making a big chunck of code without making tests first / making tests during the coding. Now it simply doesn't work and I'd like to know if it is possible to put break points or something in the code that is failing so I can check on what is happening in there.

Any other alternatives?

+2  A: 

In the Test menu option there is a Debug option where you can select what you'd like to run / debug. Then you put a break point in the code and step through as you normally would.

Mike M.