Solved
Forum Discussion
vijayk1
7 years agoOccasional Contributor
use below groovy in Setup Script for your testsuite (use SEQUENTIAL for sequential)
import com.eviware.soapui.model.testsuite.TestSuite.TestSuiteRunType testSuite.setRunType(TestSuiteRunType.PARALLEL ) log.info testSuite.getRunType()
If you want your testsuites to be executed parallel use below groovy in Project->Setup Script
project.setRunType(TestSuite.TestSuiteRunType.PARALLEL ) log.info project.getRunType()
678
7 years agoRegular Contributor
when i running this as a testsuite/project level i designed my framework like 1) LibTestsuite 2) Testcasessuite
testcases are executing parallel but library test suite is also running parallel so...data is confusing and test cases are failing