Compares this script caller against another script caller.
class SomeClass
{
void SomeMethod()
{
}
}
{
SomeClass instanceA = new SomeClass();
SomeClass instanceB = new SomeClass();
Two methods that are to the same instance
Print(callerA.Equals(callerB));
Print(callerA == callerB);
Two methods belonging to different instances
Print(callerA.Equals(callerB));
Print(callerA == callerB);
}
Attribute used for tests annotation and assignment to Suites.
proto void Print(void var)
Prints content of variable to console/log.