PRINTLN

System Testing Supervisor Script Language.

Purpose

The PRINTLN instruction prints <argument> to the supervision script execution log file with a carriage return or line feed.

Syntax

PRINTLN [ <argument> ]

<argument> is an optional string or identifier that is to be printed.

Description

The value of <argument> can be a string constant, delimited by double-quotes, or a variable integer value used in the scenario.

If you provide no argument, the instruction causes a carriage return or line feed.

If <argument> uses an unknown variable, the scenario execution exits with an error message.

Example

var_i = 25

PRINTLN "value of var_i "

PRINTLN var_i

Related Topics

PRINT