HelpWizard Pages ReferenceManual4/en: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Cg (Diskussion | Beiträge) |
Cg (Diskussion | Beiträge) |
||
Zeile 21: | Zeile 21: | ||
* '''fail'''(''messageString'')<br>report a failure; that means that the SUT (DUT) is bad (in contrast to error, above). Execution of the action's code is aborted. |
* '''fail'''(''messageString'')<br>report a failure; that means that the SUT (DUT) is bad (in contrast to error, above). Execution of the action's code is aborted. |
||
[[Category: HelpWizard/en]] |
|||
[[Category: HelpWizard API/en]] |
Version vom 10. März 2021, 18:45 Uhr
Reference Manual (Verdicts)[Bearbeiten]
[C]
[Java]
[Node]
[Python]
[JavaScript builtin]
[Smalltalk builtin]
- activitySuccess(messageString)
report success; the action is finished immediately. Actions which simply fall through without calling any of the functions here will be marked as successful.
- success(messageString)
same as above - for historic (backward compatibility) reasons
- inconclusive(messageString)
report inconclusive. Execution of the action's code is aborted.
- error(messageString)
report an error; that means that the test is bad (in contrast to fail, below). Execution of the action's code is aborted.
- fail(messageString)
report a failure; that means that the SUT (DUT) is bad (in contrast to error, above). Execution of the action's code is aborted.