php-src/ext/dom/tests/DOMDocument_createAttribute_variation.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

14 lines
248 B
PHP

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