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

1.1     ! misho       1: --TEST--
        !             2: DOMDocument::DOMImplementation - basic test for DomDocument::DOMImplementation
        !             3: --CREDITS--
        !             4: Lev Radin <prokurator@gmail.com>
        !             5: # TestFest 2009 NYPHP
        !             6: --SKIPIF--
        !             7: <?php require_once('skipif.inc'); ?>
        !             8: --FILE--
        !             9: <?php
        !            10: 
        !            11: $doc = new DOMDocument;
        !            12: $doc->load(dirname(__FILE__)."/book.xml");
        !            13: 
        !            14: var_dump($doc->implementation);
        !            15: 
        !            16: 
        !            17: ?>
        !            18: --EXPECTF--
        !            19: object(DOMImplementation)#%d (0) {
        !            20: }
        !            21: 

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