Hi Siva,
There are a few concept that you can have a look at to make this work
1. The ExceptionStrategy interface, which is used to determine what to do in case of a failure during a test, in your case you would like to continue and not use the FailFastStrategy
2. The PathGenerator interface is used to determine which the next step is, so after test case 5 fails you would like to jump to the start for the next test iteration
Then you just need to wire this together
/nils