blob: 20f34de974c564f131449e40dee21e44f75407ee [file] [log] [blame]
PASS (function(){ leftRight = ""; left() > right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() >= right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() < right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() <= right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() + right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() - right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() / right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() * right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() % right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() << right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() >> right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() >>> right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() || right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() && right(); return leftRight; })() is "Left"
PASS (function(){ leftRight = ""; left() & right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() | right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() ^ right(); return leftRight; })() is "LeftRight"
PASS testEvaluationOfArguments() is true
PASS successfullyParsed is true
TEST COMPLETE