Skip to content

Asserts

Ian Holdsworth edited this page Nov 20, 2022 · 2 revisions

Easy Excel Framework

Asserts Overview

Throw exceptions if criteria are not met

Actions

Assert If [Expression to Evaluate]

Asserts that the expression is true. If it is not true it will throw an exception

e.g.

Action
Set Local Int MyVal 4
Assert If 3==MyVal Error Message to Assert

Will Throw a general Exception with the message "Error Message to Assert" if MyVal does not equal 3

Clone this wiki locally