InterviewSolution
Saved Bookmarks
| 1. |
Which of the below statement about JUnit is false?(a) It is an open source framework(b) It provides an annotation to identify test methods(c) It provides test runners for running test(d) They cannot be run automaticallyI have been asked this question in quiz.My question is taken from JUnits in division Autoboxing & Miscellaneous of Java |
|
Answer» RIGHT option is (d) They cannot be RUN automatically Easy explanation: JUnits test can be run automatically and they CHECK their own RESULTS and provide immediate feedback. |
|