TYPO3 CMS  TYPO3_6-2
ImageInfoTest.php
Go to the documentation of this file.
1 <?php
3 
18 
22 class ImageInfoTest extends UnitTestCase {
23 
27  public function classImageInfoCanBeInstantiated() {
28  $className = 'TYPO3\CMS\Core\Type\File\ImageInfo';
29  $classInstance = new \TYPO3\CMS\Core\Type\File\ImageInfo('FooFileName');
30  $this->assertInstanceOf($className, $classInstance);
31  }
32 
33 }