Currently a failing assertion will log the error and then run the rest of the script.
within the internal handling of a failing assertion, exit should be called with a exit code <> 0
This does currently happen, if test are run via the au3unit runner:
|
If $error <> 0 And $CmdLine[0]>0 And $CmdLine[1] == "external" Then Exit $AU3UNIT_EXITCODE_FAIL |
But it should have the same behavior, as default, when a test script is being executed manually
Currently a failing assertion will log the error and then run the rest of the script.
within the internal handling of a failing assertion, exit should be called with a exit code <> 0
This does currently happen, if test are run via the au3unit runner:
au3unit/Unit/assert.au3
Line 32 in b7232c8
But it should have the same behavior, as default, when a test script is being executed manually