Add tests for static members

This commit is contained in:
Marcus Boerger 2003-07-01 19:12:23 +00:00
parent 7d6d146a02
commit 26d0753804
3 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,18 @@
--TEST--
ZE2 factory and singleton, test 4
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
class test {
private function __construct($x) {
}
}
$obj = new test;
echo "Done\n";
?>
--EXPECTF--
Fatal error: Call to private constructor from context '' %sfactory_and_singleton_004.php on line %d

View File

@ -0,0 +1,19 @@
--TEST--
ZE2 factory and singleton, test 5
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
class test {
protected function __destruct() {
}
}
$obj = new test;
$obj = NULL;
echo "Done\n";
?>
--EXPECTF--
Fatal error: Call to protected destructor from context '' %sfactory_and_singleton_005.php on line %d

View File

@ -0,0 +1,19 @@
--TEST--
ZE2 factory and singleton, test 6
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
class test {
private function __destruct() {
}
}
$obj = new test;
$obj = NULL;
echo "Done\n";
?>
--EXPECTF--
Fatal error: Call to private destructor from context '' %sfactory_and_singleton_006.php on line %d