Extensions.Assertion.Assert

From emotive
Revision as of 11:48, 16 September 2019 by Hb (talk | contribs) (Created page with "{{DISPLAYTITLE:OTX '''Assert'''}}Category:Assertion == Classification == {{ClassificationActivity | Assert | Opens a (runtime-specific) file selection dialog. | [[Action]...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Classification

Name Assert
Short Description Opens a (runtime-specific) file selection dialog.
Class Action
Extension OTX CommonDialogs extension
Group -
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

Assertion.Assert(BooleanTerm condition, StringTerm errorMessage);

Description

If the runtime is configured to evaluate assertions: Evaluates the given boolean expression.

If the expression evaluates to true, nothing happens.

If the expression evaluates to false, the execution of OTX procedure should be stopped (the exact runtime behaviour is unspecified), and the failed assertion is reported to the runtime system itself (out of OTX scope).

If an exception occurs while evaluating the boolean expression, that exception will not be thrown. Instead, the assertion will fail.

If the runtime is configured not to evaluate this assertion: Does nothing. In particular, the boolean condition will not be evaluated.

Properties

Name Data Type Class Default Cardinality Description
Condition Boolean Term - [1..1] The expression to evaluate.
ErrorMessage String Term - [0..1] An error message which may be included in the report to the runtime system, if the assertion fails.

OTL Examples

/// Local Declarations

String String1;

/// Flow

CommonDialogs.FileSaveDialog("This is the Message", "This is the Title", "file:///D:/ReadFile/abc.txt", "txt,zip,pnj", true, String1);

See also

FileOpenDialog
SelectDirectoryDialog