UutCount Property (AApp)

Version 8

Returns or sets the current number of UUTs.

Syntax

Object.UutCount [ = lCount]

The UutCount property syntax has the following parts:

 

Name

Type

Description

Object

AApp

AApp object

lCount

Long

Number of UUTs for the current run. Default is 1.

Comments

This UUT count is used when testing multiple UUT at the same time in sequential, parallel or both. This number is 1 for single UUT (default) or greater.

Setting the UutCount property will set the size of UUT logs (AApp.UutLog) and programs (AApp.UutProgram) accordingly.  

UutCount must be set before the program run, after setting the UutCount properties and other UUT related properties you must call the Run statement.

Example

The following statement print the status of all UUT running:

for i=0 to App.UutCount-1

print App.UutProgram(i).Status

next

Applies to

AApp

See Also

AApp.UutIndex, AApp.UutLog, AApp.UutProgram, App.UutRunMode, App.utSwitchLevel, AProgram.UutIndex, Run Statement