JUnit Question:

Do You Need to Write a Test Class for Every Class That Need to Be Tested?

Tweet Share WhatsApp

Answer:

This is a simple question. But the answer shows your organization skills.

The technical answer is no. There is no need to write one test class for each every class that need to be tested. One test class can contain many tests for many test target classes.

But the practical answer is yes. You should design one test class per test target class for low level basic tests. This makes your test classes much easier to manage and maintain.

You should write separate test classes for high level tests that requires multiple target classes working together.

Download JUnit PDF Read All 45 JUnit Questions
Previous QuestionNext Question
Under What Conditions Should You Test set() and get() Methods?What Is JUnit TestCase?