Forum Discussion
karkadil
13 years agoValued Contributor
The easiest way to do this, is to create 2 additional procedures and place them at the beginning and at the end of the list of Test Items.
Another workaround is to create one additional function and call all the tests from this function, like this
function Test()
{
Test1();
Test2();
}
and put this function to the Test Items. In this case events OnStartTest and OnStopTest will work exactly as you want
Another workaround is to create one additional function and call all the tests from this function, like this
function Test()
{
Test1();
Test2();
}
and put this function to the Test Items. In this case events OnStartTest and OnStopTest will work exactly as you want