aa_display_result (public)

 aa_display_result -response response -explanation explanation

Defined in packages/acs-automated-testing/tcl/aa-test-procs.tcl

Displays either a pass or fail result with specified explanation depending on the given response.

Switches:
-response
(required)
A boolean value where true (or 1, etc) corresponds to a pass result, otherwise the result is a fail.
-explanation
(required)
An explanation accompanying the response.

Partial Call Graph (max 5 caller/called nodes):
%3 test_fs_add_file_to_folder fs_add_file_to_folder (test file-storage) aa_display_result aa_display_result test_fs_add_file_to_folder->aa_display_result test_fs_add_file_to_folder_twt fs_add_file_to_folder_twt (test file-storage) test_fs_add_file_to_folder_twt->aa_display_result aa_indent aa_indent (private) aa_display_result->aa_indent aa_log_result aa_log_result (public) aa_display_result->aa_log_result

Testcases:
fs_add_file_to_folder_twt, fs_add_file_to_folder
Source code:
    if {$response} {
        aa_log_result "pass" "[aa_indent$explanation"
    } else {
        aa_log_result "fail" "[aa_indent$explanation"
    }
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: