1--TEST-- 2__construct() with no arguments. 3--CREDITS-- 4Nic Rosental nicrosental@gmail.com 5# TestFest Atlanta 2009-5-14 6--EXTENSIONS-- 7dom 8--FILE-- 9<?php 10 try { 11 $section = new DOMCDataSection(); 12 } catch (TypeError $e) { 13 echo $e->getMessage(); 14 } 15?> 16--EXPECT-- 17DOMCdataSection::__construct() expects exactly 1 argument, 0 given 18