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

Q

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

✍: FYICenter.com QA Team

A

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.

2008-02-12, 5656👍, 0💬