From e9be807267c07127bc49f8a24f18f169ce9d5e61 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 9 Jul 2006 17:04:27 +0000 Subject: [PATCH] - MFH Add new test --- Zend/tests/objects_015.phpt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 Zend/tests/objects_015.phpt diff --git a/Zend/tests/objects_015.phpt b/Zend/tests/objects_015.phpt new file mode 100755 index 00000000000..a923ee0c464 --- /dev/null +++ b/Zend/tests/objects_015.phpt @@ -0,0 +1,26 @@ +--TEST-- +comparing objects with strings/NULL +--FILE-- + $o); +var_dump($o != null); +var_dump(is_null($o)); + +?> +===DONE=== +--EXPECT-- +bool(false) +bool(true) +bool(false) +bool(true) +bool(false) +bool(true) +bool(false) +===DONE===