JUnit Question:

Under What Conditions Should You Test set() and get() Methods?

Tweet Share WhatsApp

Answer:

This is a good question for a job interview. It shows your experience with test design and data types.

Tests should be designed to target areas that might break. set() and get() methods on simple data types are unlikely to break. So no need to test them.

set() and get() methods on complex data types are likely to break. So you should test them.

Download JUnit PDF Read All 45 JUnit Questions
Previous QuestionNext Question
Why Not Just Use System.out.println() for Unit Testing?Do You Need to Write a Test Class for Every Class That Need to Be Tested?