2 The first parameter of the constructor is a required PHPT_SectionList
6 require_once dirname(__FILE__) . '/../_setup.inc';
8 $constructor = new ReflectionMethod('PHPT_Case', '__construct');
9 assert('$constructor->getNumberOfParameters() >= 1');
10 $param = array_shift($constructor->getParameters());
11 assert('$param->getClass()->getName() == "PHPT_SectionList"');