CHANNEL

System Testing Test Script Language.

Syntax

CHANNEL <communication_type> : <channel> {[, <channel> ]}

Description

The CHANNEL instruction allows you to declare a set of communication channels.

You must declare the <communication_type> with the COMMTYPE instruction.

Each <channel> variable identifies a new type of communication channel. A communication channel is a logical medium that integrates (multiplexes) the same type of connection among virtual testers and remote applications under test.

Use the CHANNEL instruction at the beginning of the test script, before the first scenario.

Examples

#typedef int inet_id_t;

COMMTYPE ux_inet IS inet_id_t WITH MULTIPLEXING

CHANNEL ux_inet: ch_1, ch_2, ch_3

CHANNEL ux_inet: ch_out

Related Topics

COMMTYPE | WAITTIL