Titan



execute


The keyword is used to execute a test case.

Related keywords:


execute( test_case_identifier [,timer_value ] );


Example 1:

execute(tc_TestCaseName());

The test case called tc_TestCaseName is executed. The test case has no parameters. Execution time supervision is not started.

Example 2:

vl_doom := execute(tc_SecondTestCaseName(), 5E-3);

The test case called tc_SecondTestCaseName is executed. The result (verdict) is stored in the variable vl_doom . Execution time limit is set to 5 milliseconds.



BNF definition of execute