php-src/ext/dom/tests/DOMAttr_construct_error_001.phpt
2015-05-16 16:49:14 -05:00

18 lines
363 B
PHP

--TEST--
DOMAttr __construct() with no arguments.
--CREDITS--
Josh Sweeney <jsweeney@alt-invest.net>
# TestFest Atlanta 2009-05-14
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
try {
$attr = new DOMAttr();
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECTF--
DOMAttr::__construct() expects at least 1 parameter, 0 given