INITIALIZATION ... END INITIALIZATION

Ada Test Script Language

Purpose

Specifies native Ada code to initialize the test driver

Syntax

INITIALIZATION

END INITIALIZATION

Description

The INITIALIZATION and END INITIALIZATION statements let you provide native Ada code that is integrated as the first main statements of the test driver.

In some environments, such as when using a different target machine, this is a convenient way to initialize the target.

An INITIALIZATION block must appear after the BEGIN instruction or between two SERVICE blocks.

This block can only contain native Ada code. Each line of native code must be preceded with '#' or '@'.

There is no limit to the number of INITIALIZATION blocks. Upon test driver generation, they are concatenated in the order in which they appeared in the test script.

Related Topics

TERMINATION