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

Q

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

✍: FYICenter.com QA Team

A

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.

2008-02-12, 5406👍, 0💬