pmm
15 years agoOccasional Contributor
aqObject.CompareProperty
I've the following code sequence in my test-script (delphi):
:
Var SNr: Integer;
:
aqObject.CompareProperty(Aliases.LPPS.CurrSNr.EditValue, cmpEqual, 32767, false);
SNr := Aliases.LPPS.CurrSNr.EditValue; //EndOf Block?
If SNr <> 32767
then Log.Error('SNr <> 32767 (EOB): '+aqConvert.IntToStr(SNr));
:
And get the folling Log-Message:
The property value "32767" does not equal the baseline value "32767".
Obvious Aliases.LPPS.CurrSNr.EditValue = 32767. Why does aqObject.CompareProperty logs the message?