domdocumentload_test_method.inc 335 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->load(dirname(__FILE__) . getenv('XML_FILE'), $libxml_options);
  6. $expectedResult = (bool) getenv('EXPECTED_RESULT');
  7. assert($result === $expectedResult);
  8. ?>