123456789101112131415161718192021222324252627 |
- <?php
-
- namespace Gedmo\Uploadable\FileInfo;
-
- use Gedmo\Uploadable\FileInfo\FileInfoArray;
-
-
-
- class FileInfoArrayTest extends \PHPUnit_Framework_TestCase
- {
-
-
- public function test_constructor_ifKeysAreNotValidOrSomeAreMissingThrowException()
- {
- $fileInfo = new FileInfoArray(array());
- }
- }
|