Forum Discussion
AlexKaras
14 years agoCommunity Hero
Hi Mike,
Usually, checkpoints (namely - .Compare() method of the corresponding object) return True if compared entities are equal and False otherwise.
So you may code something like this (untested pseudocode):
if (Regions.Compare(object1, object2)) then
Log.Message('Objects are equal');
else
Log.Warning('Objects are different');
Usually, checkpoints (namely - .Compare() method of the corresponding object) return True if compared entities are equal and False otherwise.
So you may code something like this (untested pseudocode):
if (Regions.Compare(object1, object2)) then
Log.Message('Objects are equal');
else
Log.Warning('Objects are different');