コード例 #1
0
ファイル: GParameterTest.php プロジェクト: pscheit/psc-cms
 public function testHintClassNotAutoloadable()
 {
     $param = new GParameter('justAParam');
     $param->setHint('Cls\\Does\\Not\\Exists');
     $this->assertInstanceOf('Psc\\Code\\Generate\\GClass', $param->getHint());
 }