I put 4 testcases into one testsuite and in each testcase I have code to catch the NoSuchElementException. I want: if any one testcase threw out NoSuchElementException, the testsuite execution should stop.
For Example, if first testcase throws NoSuchElementException, then testcase 2&3&4 should not execute anymore. if the second testcase throw out a NoSuchElementException, then testcase 3&4 should not execute anymore.