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

1.1     ! misho       1: --TEST--
        !             2: Test DOMDocument::createAttribute() for expected return value
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             5: --FILE--
        !             6: <?php
        !             7: $dom = new DOMDocument();
        !             8: 
        !             9: $attr = $dom->createAttribute('string');
        !            10: echo get_class($attr);
        !            11: 
        !            12: ?>
        !            13: --EXPECTF--
        !            14: DOMAttr

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