add result property to Case (re #36)
[phpt.git] / tests / Case / requires-Domain51_Test_SectionList-at-construct.phpt
blob14efb27a3b6cf51011f9263d870e16dd25cf048d
1 --TEST--
2 The first parameter of the constructor is a required PHPT_SectionList
3 --FILE--
4 <?php
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"');
14 ===DONE===
15 --EXPECT--
16 ===DONE===