Forum Discussion
Dmitry_Nikolaev
Staff
15 years agoHello Paul,
You can get a list of projects in a project suite in the following way:
Please see the Integration Object and Integration.TestSuite help topics for more information.
You can get a list of projects in a project suite in the following way:
//...
string item;
ItcProjectSuiteTests_COMAccess SuiteItems = (ItcProjectSuiteTests_COMAccess)IntegrationManager.get_TestSuite("");
for (int i = 0; i < SuiteItems.Count; i++)
{
item = SuiteItems.get_TestItem(i).ProjectName;
// ...
}
//...
Please see the Integration Object and Integration.TestSuite help topics for more information.