* @author Gediminas Morkevicius * @link http://www.gediminasm.org * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ class FileInfoArrayTest extends \PHPUnit_Framework_TestCase { /** * @expectedException RuntimeException */ public function test_constructor_ifKeysAreNotValidOrSomeAreMissingThrowException() { $fileInfo = new FileInfoArray(array()); } }