コード例 #1
0
ファイル: IconRegistryTest.php プロジェクト: hlop/TYPO3.CMS
 /**
  * @test
  */
 public function registerFileExtensionOverwriteAnExistingIcon()
 {
     $this->subject->registerFileExtension('jpg', 'xyz');
     $result = $this->subject->getIconIdentifierForFileExtension('jpg');
     $this->assertEquals('xyz', $result);
 }