!include once #1034831 // Gazelle 22 Function Include for Testing svoid test_leftArrowScript_scriptError() { // Assert that an exception thrown inside LAScript contains a ScriptError instance Throwable error = cast leftArrow("getException < Runnable fail"); var scriptError = innerExceptionOfType(GazelleV_LeftArrowScript.ScriptError.class, error); assertNotNullVerbose(scriptError); // Assert we can quickFail and it's NOT going to be wrapped in anything var e = getException(r { leftArrow("quickFail") }); printStackTrace(e); assertInstanceOfVerbose(e, QuickException); }