diff options
Diffstat (limited to 'ext/dom/tests/DOMDocumentFragment_construct_error_001.phpt')
-rw-r--r-- | ext/dom/tests/DOMDocumentFragment_construct_error_001.phpt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/dom/tests/DOMDocumentFragment_construct_error_001.phpt b/ext/dom/tests/DOMDocumentFragment_construct_error_001.phpt new file mode 100644 index 0000000..91173c4 --- /dev/null +++ b/ext/dom/tests/DOMDocumentFragment_construct_error_001.phpt @@ -0,0 +1,17 @@ +--TEST-- +DOMDocumentFragment::__construct() with too many errors. +--CREDITS-- +Eric Lee Stewart <ericleestewart@gmail.com> +# TestFest Atlanta 2009-05-24 +--SKIPIF-- +<?php require_once('skipif.inc'); ?> +--FILE-- +<?php +$fragment = new DOMDocumentFragment("root"); +?> +--EXPECTF-- +Fatal error: Uncaught exception 'DOMException' with message 'DOMDocumentFragment::__construct() expects exactly 0 parameters, 1 given' in %s:%d +Stack trace: +#0 %s(%d): DOMDocumentFragment->__construct('root') +#1 {main} + thrown in %s on line %d
\ No newline at end of file |