disable / enable test suite via groovy
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2008
03:41 PM
05-27-2008
03:41 PM
disable / enable test suite via groovy
Hello,
I have a load script in my project. I want to do the following with my load script.
1. disable all the testsuites in project.
2. enable the test suite named 'xxxxxx'
how can I accomplish this via groovy.
Thanks
Ali
I have a load script in my project. I want to do the following with my load script.
1. disable all the testsuites in project.
2. enable the test suite named 'xxxxxx'
how can I accomplish this via groovy.
Thanks
Ali
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2008
03:53 PM
05-27-2008
03:53 PM
Hi Ali,
Please try the following:
regards!
/Ole
eviware.com
Please try the following:
for( testSuite in project.testSuiteList )
{
testSuite.disabled = testSuite.name != "the name not to disable"
}
regards!
/Ole
eviware.com
