UutCount Property (AApp) |
Version 8 |
Returns or sets the current number of UUTs.
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. |
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.
The following statement print the status of all UUT running:
for i=0 to App.UutCount-1
print App.UutProgram(i).Status
next
AApp.UutIndex, AApp.UutLog, AApp.UutProgram, App.UutRunMode, App.utSwitchLevel, AProgram.UutIndex, Run Statement