php-src/ext/dom/tests/DOMCDATASection_construct_error_001.phpt
Eric Stewart 30cdf25f22 New test: DOMAttr read $name property.
New test: DOMAttr read $ownerElement with null parent.
New test: DOMAttr write non-string $value property
New test: DOMCDATASection __construct() with no arguments.
New test: DOMCharacterData - Invalid State Error when getting data out of content.
2009-05-23 01:42:37 +00:00

21 lines
375 B
PHP

--TEST--
__construct() with no arguments.
--CREDITS--
Nic Rosental nicrosental@gmail.com
# TestFest Atlanta 2009-5-14
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
try
{
$section = new DOMCDataSection();
}
catch (Exception $e)
{
echo $e->getMessage();
}
?>
--EXPECT--
DOMCdataSection::__construct() expects exactly 1 parameter, 0 given