php-src/ext/dom/tests/domdocument_createcomment_error_001.phpt

16 lines
326 B
Plaintext
Raw Normal View History

2009-08-26 17:17:58 +00:00
--TEST--
DomDocument::CreateComment() - Incorrect Parameters
--CREDITS--
Clint Priest @ PhpTek09
2009-09-11 21:57:04 +00:00
--SKIPIF--
<?php require_once('skipif.inc'); ?>
2009-08-26 17:17:58 +00:00
--FILE--
<?php
$x = new DomDocument();
$x->createComment();
?>
2009-09-11 21:57:04 +00:00
===DONE===
2009-08-26 17:17:58 +00:00
--EXPECTF--
2009-09-11 21:57:04 +00:00
Warning: DOMDocument::createComment() expects exactly 1 parameter, 0 given in %s
===DONE===