maeGetOverallSpecStatus
maeGetOverallSpecStatus( [?verboseverbose] ) => t / nil
Description
Returns the overall specification status for the current history.
Arguments
|
Specifies whether to print a detailed report including the pass or fail status for each test name and output name combination. |
||
Value Returned
Examples
Returns the overall specification status. When ?verbose is set to t, an overall pass or fail status is shown for each output in addition to a detailed report for each output.
; Load the results for a history
maeOpenResults(?history "Interactive.1")
=> t
>
maeGetOverallSpecStatus(?verbose t)
=>
; When ?verbose is set to nil, only a list containing the status of each output at ; the test level is returned
maeGetOverallSpecStatus(?verbose nil) => t ;close the results maeCloseResults() => t


Shows the overall results when one of the test-output result fails.
; Load the results for a history
maeOpenResults(?history "Interactive.2")
=> t
maeGetOverallSpecStatus(?verbose t) Spec Status: ac:delay_read1 : PASSED tran:delay_read1 : FAILED Overall : FAILED (("Overall" nil) ("ac:delay_read1" t)
("tran:delay_read1" nil)
)
Return to top