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