Forum Discussion
SmartBear_Suppo
Alumni
17 years agoHello!
In the current verson of soapUI you basically have to run each TestCase in a TestSuite individually:
However, the upcoming 3.0 version will have an improved API for running TestSuites from Groovy.
Regards,
Dain
eviware support
In the current verson of soapUI you basically have to run each TestCase in a TestSuite individually:
def testSuite = testRunner.testCase.testSuite.project.testSuites['Your TestSuite']
for(testcase in testSuite.testCaseList) {
//Run your testcase
}
However, the upcoming 3.0 version will have an improved API for running TestSuites from Groovy.
Regards,
Dain
eviware support