From 28152192b85cbe9bf5ea08ebe8c706d12e2e13e5 Mon Sep 17 00:00:00 2001 From: valmat Date: Fri, 28 Mar 2014 00:42:09 +0600 Subject: add test: class_obj/003-comparable.phpt --- tests/php/dbg.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'tests/php/dbg.php') diff --git a/tests/php/dbg.php b/tests/php/dbg.php index 2040f01..b9841c7 100644 --- a/tests/php/dbg.php +++ b/tests/php/dbg.php @@ -12,3 +12,37 @@ +//- + +// initialize a couple of objects +$object1 = new TestBaseClass\Comparable(); +$object2 = new TestBaseClass\Comparable(); +$object3 = new TestBaseClass\Comparable(); + +// compare the objects +if ($object1 < $object2) +{ + echo("$object1 is smaller than $object2\n"); +} +else +{ + echo("$object1 is bigger than $object2\n"); +} + +if ($object1 == $object3) +{ + echo("$object1 is equal to $object3\n"); +} +else +{ + echo("$object1 is not equal to $object3\n"); +} + +if ($object1 != $object2) +{ + echo("$object1 is not equal to $object2\n"); +} +else +{ + echo("$object1 is equal to $object2\n"); +} \ No newline at end of file -- cgit v1.2.3