Annotation of embedaddon/php/ext/dom/tests/DOMDocument_schemaValidate_error2.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: DomDocument::schemaValidate() - non-conforming schema file
        !             3: --CREDITS--
        !             4: Daniel Convissor <danielc@php.net>
        !             5: # TestFest 2009 NYPHP
        !             6: --SKIPIF--
        !             7: <?php require_once('skipif.inc'); ?>
        !             8: --FILE--
        !             9: <?php
        !            10: 
        !            11: $doc = new DOMDocument;
        !            12: 
        !            13: $doc->load(dirname(__FILE__)."/book.xml");
        !            14: 
        !            15: $result = $doc->schemaValidate(dirname(__FILE__)."/book-non-conforming-schema.xsd");
        !            16: var_dump($result);
        !            17: 
        !            18: ?>
        !            19: --EXPECTF--
        !            20: Warning: DOMDocument::schemaValidate(): Element 'books': No matching global declaration available for the validation root. in %s.php on line %d
        !            21: bool(false)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>