php-src/ext/dom/tests/DOMDocument_createAttribute_variation.phpt
2008-05-15 12:50:28 +00:00

13 lines
201 B
PHP

--TEST--
Test DOMDocument::createAttribute() for expected return value
--FILE--
<?php
$dom = new DOMDocument();
$attr = $dom->createAttribute('string');
echo get_class($attr);
?>
--EXPECTF--
DOMAttr