Forum Discussion
SmartBear_Suppo
Alumni
16 years agoHi,
I've created the following testsuite setup script:
which basically clones all TestCases in the testSuite (and removes any old clones first). This seems to work ok when running both at project or testsuite level..
Can you use this somehow? Are you using an updated build?
regards!
/Ole
eviware.com
I've created the following testsuite setup script:
for( tc in testSuite.testCaseList )
{
if( tc.name.endsWith( "- Clone" ))
testSuite.removeTestCase( tc )
else
testSuite.cloneTestCase( tc, tc.name + " - Clone" )
}
which basically clones all TestCases in the testSuite (and removes any old clones first). This seems to work ok when running both at project or testsuite level..
Can you use this somehow? Are you using an updated build?
regards!
/Ole
eviware.com