コード例 #1
0
ファイル: PhpClassTest.php プロジェクト: ingeniorweb/symfo3cv
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testRemoveConstantThrowsExceptionWhenConstantDoesNotExist()
 {
     $class = new PhpClass();
     $class->removeConstant('foo');
 }