php-src/ext/dom/tests/DOMDocument_loadHTMLfile.phpt
2017-02-03 21:02:52 +01:00

17 lines
365 B
PHP

--TEST--
Test DOMDocument::loadHTMLFile
--DESCRIPTION--
Verifies the basic behaviour of the method
--CREDITS--
Antonio Diaz Ruiz <dejalatele@gmail.com>
--INI--
assert.bail=true
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
$doc = new DOMDocument();
$result = $doc->loadHTMLFile(dirname(__FILE__) . "/test.html");
assert($result === true);
?>
--EXPECT--