summaryrefslogtreecommitdiff
path: root/Zend/tests/object-null.phpt
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-08-15 13:14:48 +0000
committerSVN Migration <svn@php.net>2006-08-15 13:14:48 +0000
commit1bfb88081d1fb0211feaa18b8a5b635fc03594b8 (patch)
tree80d09fe7fec47fd936eb7abf5e9a5b729573db9a /Zend/tests/object-null.phpt
parent407caf3a0c260e37985693201cda727a1b0dc128 (diff)
downloadphp-git-php-5.1.5.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_1_5'.php-5.1.5
Diffstat (limited to 'Zend/tests/object-null.phpt')
-rw-r--r--Zend/tests/object-null.phpt21
1 files changed, 0 insertions, 21 deletions
diff --git a/Zend/tests/object-null.phpt b/Zend/tests/object-null.phpt
deleted file mode 100644
index 650178c341..0000000000
--- a/Zend/tests/object-null.phpt
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-Test whether an object is NULL or not.
---FILE--
-<?php
-
-class Bla
-{
-}
-
-$b = new Bla;
-
-var_dump($b != null);
-var_dump($b == null);
-var_dump($b !== null);
-var_dump($b === null);
-?>
---EXPECT--
-bool(true)
-bool(false)
-bool(true)
-bool(false)