コード例 #1
0
ファイル: DefinitionTest.php プロジェクト: mongator/mondator
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testGetConstantByNameShouldThrowException()
 {
     $definition = new Definition('Class1');
     $definition->getConstantByName('X');
 }