INCLUDE

System Testing Test Script Language.

Syntax

INCLUDE <string>

Description

The INCLUDE instruction lets you include scenarios in the current test script.

Its use in test scenarios is optional.

The INCLUDE instruction may appear in any scenario as long as the scenario does not contain any primary instructions. <string> is the name of the file to be included. The system searches for files in the current directory and then searches the list of paths passed on to the Test Script Compiler.

Example

SCENARIO Test_1

FAMILY nominal

INCLUDE "../common/initialization"

INCLUDE "scenario_1_and_2"

SCENARIO scenario_3

COMMENT call connection

CALL api_trsprt_connexionCF()

CALL ...

END SCENARIO

END SCENARIO