domdocumentloadxml_test_method.inc 360 B

123456789101112
  1. <?php
  2. include(dirname(__FILE__) . '/domdocumentload_utilities.inc');
  3. $doc = new DOMDocument();
  4. $libxml_options = libxml_options_to_int(getenv('LOAD_OPTIONS'));
  5. $result = $doc->loadXML(file_get_contents(dirname(__FILE__) . getenv('XML_FILE')),
  6. $libxml_options);
  7. $expectedResult = (bool) getenv('EXPECTED_RESULT');
  8. assert($result === $expectedResult);
  9. ?>