Unit 'System' Package
[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] [#rtl]

Assert

Check validity of a given condition.

Declaration

Source position: system.fpd line 32

procedure Assert(

  Expr: Boolean

);

procedure Assert(

  Expr: Boolean;

  const Msg: string

);

Description

With assertions on, Assert tests if expr is false, and if so, aborts the application with a Runtime error 227 and an optional error message in msg. If expr is true, program execution continues normally. If assertions are not enabled at compile time, this routine does nothing, and no code is generated for the Assert call. Enabling and disabling assertions at compile time is done via the \$C or \$ASSERTIONS compiler switches. These are local switches. The default behavior of the assert call can be changed by setting a new handler in the AssertErrorProc variable. Sysutils overrides the default handler to raise a EAssertionFailed exception.

Errors

None.

See also

Halt

  

Stop program execution.

Runerror

  

Generate a run-time error.


Documentation generated on: Jul 24 2023