Forum Discussion
SmartBear_Suppo
Alumni
13 years agoHi,
The problem is that you are running the groovy script twice by doing this call testRunner.testCase.testSuite.run( null, false ); in the for loop.
testRunner.testCase.testSuite.run( null, false ); should be replaced by vntTestSuite.run(null,false); so the testsuite that is ran is the one from the for loop.
Regards,
Marcus
SmartBear Support
The problem is that you are running the groovy script twice by doing this call testRunner.testCase.testSuite.run( null, false ); in the for loop.
testRunner.testCase.testSuite.run( null, false ); should be replaced by vntTestSuite.run(null,false); so the testsuite that is ran is the one from the for loop.
Regards,
Marcus
SmartBear Support