php-src/ext/dom/tests/DOMDocument_saveHTMLFile_error2.phpt
Fabien Villepinte 601aef3468 Replace EXPECTF by EXPECT
In ext/dom all the tests with a EXPECTF section
starting by "Fatal error: Uncaught" have been updated
to use the faster EXPECT
2019-10-26 16:05:02 +02:00

19 lines
398 B
PHP

--TEST--
DOMDocument::saveHTMLFile() should fail if called statically
--CREDITS--
Knut Urdalen <knut@php.net>
#PHPTestFest2009 Norway 2009-06-09 \o/
--SKIPIF--
<?php
require_once __DIR__ .'/skipif.inc';
?>
--FILE--
<?php
try {
DOMDocument::saveHTMLFile();
} catch (Error $e) {
echo $e->getMessage();
}
?>
--EXPECT--
Non-static method DOMDocument::saveHTMLFile() cannot be called statically