Some standard scripts that are created are the baseline test script, Create a baseline test script, and functional, structural and interaction test scripts that ensure that the OUT is tested to specified coverage criteria. For projects with specific performance criteria, there would be a performance suite that concentrates on defining specific types of loads on the system.
void SimpTest::test_script9()
{
OUT = new CUT;
*ostr << "Start an interaction of test cases 4 and 6" << endl;
if (test_case4() && test_case6())
*ostr << "Interaction test case completed successfully" << endl;
else
*ostr << "Interaction test case completed unsuccessfully" << endl;
delete OUT;
}