コード例 #1
0
 public function testSelfCycle()
 {
     $aParts = array();
     $aParts['test/1'] = SystemPart::getPart('test/1');
     $aParts['test/1']->dependOn($aParts['test/1']);
     $this->setExpectedException('Exception');
     $aParts = SystemPart::orderedParts($aParts);
 }
コード例 #2
0
ファイル: SystemPart.php プロジェクト: rapila/cms-base
 public function __construct($sTestName)
 {
     parent::__construct("test/{$sTestName}", array());
 }