HEADER

System Testing Test Script Language.

Syntax

HEADER <test_name>, <version>, <test_plan_version>

Description

This instruction allows you to define a standard header at the beginning of the test script. The information contained in this header enables you to identify a list of scenarios.

The headers can be strings or environment variables.

<test_name> is the name for the test script.

<version> is the version of the system tested.

<test_plan_version> is the test script version.

This instruction must appear before the first instruction block and strings must be enclosed in double-quotes (" ").

Example

HEADER "DEMO SOCKET", $VERSION, "2.4"

INITIALIZATION

...

END INITIALIZATION

SCENARIO Main

....

END SCENARIO