Assert Values
Aus ExpeccoWiki
Assert [ Value is less, equal, greater or in range]
- Value is Less or Equal: Fail if the input value is above a given limit.
- Value is Less: Fail if the input value is not below a given limit.
- Value is Greater or Equal: Fail if the input value is less than a given limit.
- Value is Greater: Fail if the input value is not above a given limit.
- Value in Range: Fail if the input value is not in the given min..max range.
- Value NOT in Range: Fail if the input value is in the given min..max range.
Assert [ Value is set ]
- Value in Set: Fail if the input value is not in the given set of allowed values.
- Value NOT in Set: Fail if the input value is in the given set of allowed values.
Assert [ Value arrives at Pin1 ]
- Value arrives at Pin1: Fail if an input arrived at any other than pin1 (can be used that some value arrives definitely via s particular path).
Back to Standard Library.
Previous: Assert [ False ]
Next: Assert [ Same Collection Contents ]


