home *** CD-ROM | disk | FTP | other *** search
- '*********************** LOGDISK.MST *************************************
- 'Demonstrates: FastTest's procedures to log information to disk.
- '
- 'Required Files: FASTTEST.INC, NOTEPAD.EXE
- '
- 'Uses: FASTTEST
- '
- 'Complexity Level: INTRODUCTORY
- '
- 'Notes:
- '
- '*************************************************************************
-
- '$INCLUDE 'FASTTEST.INC' '*** Include all necessary files
-
- XSetLogOptions LOG_DISK '*** Output errors to the Disk.
- XSetLogFileName "TEST001.LOG" '*** Set name of the log file
-
- XLog "Windows Notepad Program Test" '*** Log header information
- XLog "" '*** Log a blank line for
- '*** spacing
- XLog "Date: 04-08-91" '*** More log header
- '*** information
- XLogBanner "Starting Test..." '*** Output a banner to the
- '*** log file
-
- XStartApp "notepad.exe", "" '*** Start the application
- XLog "Application started...."
- XLog "End of Test...No Errors Detected"
- END
-
-