public function NotBlankValidatorTest::testBlankIsInvalid in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/NotBlankValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\NotBlankValidatorTest::testBlankIsInvalid()
File
- vendor/
symfony/ validator/ Tests/ Constraints/ NotBlankValidatorTest.php, line 64
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testBlankIsInvalid() {
$constraint = new NotBlank(array(
'message' => 'myMessage',
));
$this->validator
->validate('', $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ value }}', '""')
->assertRaised();
}