Interview Questions

Why Not Just Use System.out.println() for Unit Testing?

JUnit Questions and Answers


(Continued from previous question...)

Why Not Just Use System.out.println() for Unit Testing?

Inserting debug statements into code is a low-tech method for debugging it. It usually requires that output be scanned manually every time the program is run to ensure that the code is doing what's expected.

It generally takes less time in the long run to codify expectations in the form of an automated JUnit test that retains its value over time. If it's difficult to write a test to assert expectations, the tests may be telling you that shorter and more cohesive methods would improve your design.

(Continued on next question...)

Other Interview Questions