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