You are here

public function FileValidatorTest::testValidUploadedfile in Plug 7

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/FileValidatorTest.php, line 89

Class

FileValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidUploadedfile() {
  $file = new UploadedFile($this->path, 'originalName', null, null, null, true);
  $this->validator
    ->validate($file, new File());
  $this
    ->assertNoViolation();
}