InterviewSolution
Saved Bookmarks
| 1. |
The isCloseTo class extends which base class?(a) Matcher(b) HamcrestCore(c) TypeMatcher(d) TypeSafeMatcherThis question was addressed to me in homework.The query is from Integration Software Testing topic in section Software Testing Principles of JUnit |
|
Answer» CORRECT CHOICE is (d) TypeSafeMatcher The explanation: The TypeSafeMatcher is a useful base class for Matchers that require non-null VALUES of a specific TYPE. |
|