OTX Reference  
OpenTestSystem.Otx.Core.Terms.IsGreaterOrEqual Class Reference

Checks the left value is greater or equal than the right value More...

Inheritance diagram for OpenTestSystem.Otx.Core.Terms.IsGreaterOrEqual:
Inheritance graph

Public Attributes

SimpleTerm left
 Represents the value that has to be greater or equal than the <right> value. More...
 
SimpleTerm right
 Represents the value that has to be less or equal than the <left> value. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Checks the left value is greater or equal than the right value

IsGreaterOrEqual is a BooleanTerm. Returns true if and only if the left value is greater or equal than the right value.

Checker rules
CheckerRule.Core_Chk049 – uniform relation operand type

Syntax
BooleanTerm = SimpleTerm1 >= SimpleTerm2;
Examples
// Local Declarations
Integer MyValue1 = 13;
Float MyValue2 = 12.9999;
String MyValue3 = "B";
Boolean result;
// Flow
result = MyValue1 >= MyValue2;
result = MyValue3 >= "A";
result = MyValue3 >= "B";
result = MyValue3 >= "C";

Member Data Documentation

◆ left

SimpleTerm OpenTestSystem.Otx.Core.Terms.IsGreaterOrEqual.left

Represents the value that has to be greater or equal than the <right> value.

◆ right

SimpleTerm OpenTestSystem.Otx.Core.Terms.IsGreaterOrEqual.right

Represents the value that has to be less or equal than the <left> value.