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

12 lines
335 B
PHP

<?php
include(dirname(__FILE__) . '/domdocumentload_utilities.php');
$doc = new DOMDocument();
$libxml_options = libxml_options_to_int(getenv('LOAD_OPTIONS'));
$result = $doc->load(dirname(__FILE__) . getenv('XML_FILE'), $libxml_options);
$expectedResult = (bool) getenv('EXPECTED_RESULT');
assert($result === $expectedResult);
?>