JUnit Question: Download JUnit PDF

How Do You Launch a Debugger When a Test Fails?

Tweet Share WhatsApp

Answer:

Configure the debugger to catch the java.lang.AssertionError exception and suspend the execution.

Call the TestRunner to run the test under the debugger.

When the test fails again, The debugger will suspend the execution and start the debug mode.

Now you are ready to use debugger commands to find the code issue that causing the fail.

How you configure this depends on the debugger you prefer to use.
Most Java debuggers provide support to stop the program when a specific exception is raised.

Download JUnit PDF Read All 45 JUnit Questions
Previous QuestionNext Question
What Is JUnit?When Should Unit Tests Should Be Written In Development Cycle?