JUnit Question:

Download Job Interview Questions and Answers PDF

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

JUnit Interview Question
JUnit Interview Question

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 Interview Questions And Answers PDF

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?