![]() |
![]() |
![]() |
![]() |
![]() |
The keyword is used to execute a test case.
Related keywords:
execute( test_case_identifier [,timer_value ] ); |
test_case_identifier is the name used to refer to the test case to be executed. It is suggested that the name begin with tc_
timer value is the optional floating point value stating the execution time limit in seconds.
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