ScriptEditorLogger
IntroductionDisplays test results in a new AppleScript Editor document. Member Functions
initializeCreates a "Test Results" document if one does not already exist. on initialize() printColoredLinePrints the given string to the "Test Results" document and starts a new line. on printColoredLine( aString, aColor) ParametersDiscussionThe string is automatically prefixed by --, so that it is treated as a comment by AppleScript Editor. printColoredStringPrints the given string to the "Test Results" document. on printColoredString( aString, aColor) ParametersprintTestCasePrints the name of the current test. on printTestCase( aTestCase) ParametersDiscussionThe string is automatically prefixed by --, so that it is treated as a comment by AppleScript Editor. |