ContributionsMost RecentMost LikesSolutionsRe: Failure re-execution from test suite tear down is there any external way to achieve it.. i would like to have sample documentation Re: Difference in testcase.run method In that case what does stringtoobject and async do here.. please explain Difference in testcase.run method Hi Team, What is the different between, testCase.run(null, false) testCase.run(new com.eviware.soapui.support.types.StringToObjectMap(),false) Please help me in explaining in detail. What should i do to run the test case parallel from groovy script Failure re-execution from test suite tear down should have separate reports for rerun test case A separate junit test reports should be generated for failure rerun test cases. Currently we can see that the failed test case that is re-executed is not shown in separate test report. Failure re-execution from test suite tear down Hi Team, i am running a test suite and reexecuting the failed test cases from testsuite teardown. for ( testCaseResult in runner.results ) { testCaseName = testCaseResult.getTestCase().name log.info testCaseName if ( testCaseResult.getStatus().toString() == 'FAILED' ){ log.info "$testCaseName has failed" testCaseResult.testCase.run(null, false) } } The issue here is all my failed cases are executed but the status of test is still fail even all the test cases are passed. When i look into junit reports, the test case that got passed in reexecution still shown as fail. I want to have a separate reports that can have only failed test cases re-executed status?? Is this possible ?? else share your own thoughts to overcome this Re: I want to re-execute the failed test cases automatically once i run suite wise Thanks for your update. It really worked. But the issue now is, all my failed cases are executed but the status of test is still fail even all the test cases are passed. When i look into junit reports, the test case that got passed in reexecution still shown as fail.. Can u help us in this ? I want to re-execute the failed test cases automatically once i run suite wise Hi Team I am running the test cases through testRunner from test suite. My need is to re-execute the failed test cases at the same instance. can u please help me out DataSource Excel value fetch issue while executing in parallel Hello I have 100 test cases in test suite and we are using datasource - excel to fetch values for our services. Randomly 10 cases are getting failed in parallel mode execution. We found it is due to values are not fetching from excel sheet.. We are using 1 worsheet with multiple sheets Thanks in advance