InterviewSolution
Saved Bookmarks
| 1. |
@Test(timeout = 130) implies a time limit of ___________(a) 130 milliseconds(b) 130 minutes(c) 130 seconds(d) 1.30 minutesI have been asked this question by my college director while I was bunking the class.This question is from Timeout Testing in portion Mastering JUnit of JUnit |
|
Answer» RIGHT answer is (a) 130 MILLISECONDS To explain I would say: The timeout argument is in milliseconds. |
|