gb.test.tap: Forgot Assert.BailOut

[GB.TEST.TAP]
* NEW: Add Assert.BailOut wrapper for the internal TapPrinter.
This commit is contained in:
Tobias Boege 2020-02-23 22:46:16 +01:00
parent 185bbf5745
commit 65da83b374

View file

@ -108,7 +108,13 @@ Public Sub Skip(Optional Comment As String)
$hCurrent.Directive = Tap.SKIP
$hCurrent.Comment = Comment
Ok(True)
Pass()
End
Public Sub BailOut(Optional Comment As String)
$hCurrent.Printer.BailOut(Comment)
End