parallel execution issues when framework has dependency of library testcases on other testsuite
Let me clear my Q..
Framework designed like
Project
Libtestsuite
LibTestcase1
LibTestcase2
Testcasessuite
Testcase1
Testcase2
-> Executing Testsuite using commandline
-> When Running testsuite using command line under setup script i placed this below script to run testsuite PARALLEL
which testcasessuite is executing parallel
import com.eviware.soapui.model.testsuite.TestSuite.TestSuiteRunType
testSuite.setRunType(TestSuiteRunType.PARALLEL )
But issue is when testcasesuite executing parallel
Testcase1 has dependecy of libtestcase1
Testcase2 has also dependecy of libtestcase1
So, both Testcase1 and Testcase2 take same data from libtestcase1 and failing the testcases
I hope i made it clear... can any one help here