You are here

public function UploadedFileTest::testErrorIsOkByDefault in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/File/UploadedFileTest.php \Symfony\Component\HttpFoundation\Tests\File\UploadedFileTest::testErrorIsOkByDefault()

File

vendor/symfony/http-foundation/Tests/File/UploadedFileTest.php, line 92

Class

UploadedFileTest

Namespace

Symfony\Component\HttpFoundation\Tests\File

Code

public function testErrorIsOkByDefault() {
  $file = new UploadedFile(__DIR__ . '/Fixtures/test.gif', 'original.gif', 'image/gif', filesize(__DIR__ . '/Fixtures/test.gif'), null);
  $this
    ->assertEquals(UPLOAD_ERR_OK, $file
    ->getError());
}