InterviewSolution
Saved Bookmarks
| 1. |
_______________ expect the last invocation between min and max times.(a) times(int count)(b) times(int min, int max)(c) once()(d) asStub()The question was posed to me in quiz.This question is from Putting Ant to The Task topic in division Running JUnit Tests from Ant of JUnit |
|
Answer» CORRECT answer is (b) times(int min, int max) The explanation is: The max and min values are passed as ARGUMENTS in the FUNCTION definition times(int min, int max). |
|