summaryrefslogtreecommitdiff
path: root/tests/php/phpt/class_obj/003-comparable.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/phpt/class_obj/003-comparable.phpt')
-rw-r--r--tests/php/phpt/class_obj/003-comparable.phpt46
1 files changed, 0 insertions, 46 deletions
diff --git a/tests/php/phpt/class_obj/003-comparable.phpt b/tests/php/phpt/class_obj/003-comparable.phpt
deleted file mode 100644
index 3e0b1f6..0000000
--- a/tests/php/phpt/class_obj/003-comparable.phpt
+++ /dev/null
@@ -1,46 +0,0 @@
---TEST--
-Test comparable objects
---SKIPIF--
-<?php if (!extension_loaded("extension_for_tests")) print "skip"; ?>
---FILEEOF--
-<?php
-
-// 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");
-}
-
-
-//echo PHP_EOL;
---EXPECT--
-Obj#1(2) is bigger than Obj#2(1)
-Obj#1(2) is equal to Obj#3(2)
-Obj#1(2) is not equal to Obj#2(1) \ No newline at end of file