ATEasy development environment built-in log control (ALog object).
ALog Public Const
When running the application within the ATEasy environment the TestLog variable is set to the ATEasy built-in Log window Test tab log control. When running the application in standalone mode (EXE) the TestLog variable is set to Nothing.
The following example demonstrates how to output data to the test log built-in window:
OutputTestLog(s): Void Public
s : Val String
{
if TestLog=Nothing then return ! when it is run from standalone EXE
!(not from the ATEasy development env.)
TestLog.Append(s) ! append text to ATEasy test log window
}