You are here

public function NotBlankValidatorTest::testFalseIsInvalid in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/NotBlankValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\NotBlankValidatorTest::testFalseIsInvalid()

File

vendor/symfony/validator/Tests/Constraints/NotBlankValidatorTest.php, line 77

Class

NotBlankValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testFalseIsInvalid() {
  $constraint = new NotBlank(array(
    'message' => 'myMessage',
  ));
  $this->validator
    ->validate(false, $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', 'false')
    ->assertRaised();
}