Liberty_Informa
12 years agoRegular Contributor
(Resolved)Parallel and Sequential RunType
Hi
As I understand in soapUI we can mark runType as parallel or sequential at two levels.
1. TestSuite level
2. TestCases level
I have following piece of code in the project load script to control the runType.
This makes testCase level execution as sequential.
My question what code should I write to get control over testSuite level of runtype execution?
As I understand in soapUI we can mark runType as parallel or sequential at two levels.
1. TestSuite level
2. TestCases level
I have following piece of code in the project load script to control the runType.
testSuiteList = project.getTestSuites()
testSuiteList.each
{
testSuite = project.getTestSuiteByName(it.key)
testCaseList = testSuite.getTestCases()
testSuite.setRunType(TestSuiteRunType.SEQUENTIAL)
}
This makes testCase level execution as sequential.
My question what code should I write to get control over testSuite level of runtype execution?