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

Tests for inequality More...

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

Public Attributes

Term[] term
 Represents the operands which shall be tested for equality. Terms shall be evaluated in the order of appearance in the OTX document. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Tests for inequality

IsNotEqual is a BooleanTerm which tests for inequality of two or more operands. For SimpleTerm arguments, true is returned if and only if not all of the values of the terms are equal. For terms returning a reference, true is returned if and only if not all of the references returned by the terms are equal.

Checker rules
CheckerRule.Core_Chk049 – uniform relation operand type

Syntax
BooleanTerm = Term1 != Term2;
Examples
// Local Declarations
Integer MyValue1 = 12;
Float MyValue2 = 12.0000001;
String MyValue3 = "abcd";
Boolean result;
// Flow
result = MyValue1 != MyValue2;
result = MyValue3 != "abc";

Member Data Documentation

◆ term

Term [] OpenTestSystem.Otx.Core.Terms.IsNotEqual.term

Represents the operands which shall be tested for equality. Terms shall be evaluated in the order of appearance in the OTX document.