public function UploadedFileTest::testIsInvalidOnUploadError in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/File/UploadedFileTest.php \Symfony\Component\HttpFoundation\Tests\File\UploadedFileTest::testIsInvalidOnUploadError()
@dataProvider uploadedFileErrorProvider
File
- vendor/
symfony/ http-foundation/ Tests/ File/ UploadedFileTest.php, line 236
Class
Namespace
Symfony\Component\HttpFoundation\Tests\FileCode
public function testIsInvalidOnUploadError($error) {
$file = new UploadedFile(__DIR__ . '/Fixtures/test.gif', 'original.gif', null, filesize(__DIR__ . '/Fixtures/test.gif'), $error);
$this
->assertFalse($file
->isValid());
}