Hi kannan ,
yes, it should be easy to implement it with groovy scripts.
// groovy
def testSuiteList = ["TestSuite1", "TestSuite2", "TestSuite3"]
def ts= null
testSuiteList.each {
ts = testRunner.testCase.testSuite.project.testSuites[it]
ts.run(new com.eviware.soapui.support.types.StringToObjectMap(), false)
}
Thanks,
/Aaron