diff options
Diffstat (limited to 'ext/dom/tests/DOMAttr_construct_error_001.phpt')
-rw-r--r-- | ext/dom/tests/DOMAttr_construct_error_001.phpt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/dom/tests/DOMAttr_construct_error_001.phpt b/ext/dom/tests/DOMAttr_construct_error_001.phpt new file mode 100644 index 0000000..08734ca --- /dev/null +++ b/ext/dom/tests/DOMAttr_construct_error_001.phpt @@ -0,0 +1,17 @@ +--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 +$attr = new DOMAttr(); +?> +--EXPECTF-- +Fatal error: Uncaught exception 'DOMException' with message 'DOMAttr::__construct() expects at least 1 parameter, 0 given' in %s:%d +Stack trace: +#0 %s(%d): DOMAttr->__construct() +#1 {main} + thrown in %s on line %d |