File
- drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/FileValidatorTest.php, line 72
Class
- FileValidatorTest
Namespace
Symfony\Component\Validator\Tests\Constraints
Code
public function testValidFile() {
$this->context
->expects($this
->never())
->method('addViolation');
$this->validator
->validate($this->path, new File());
}