Interview Questions

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

JUnit Questions and Answers


(Continued from previous question...)

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

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.

(Continued on next question...)

Other Interview Questions