You are here

public function NotBlankValidatorTest::testBlankIsInvalid 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::testBlankIsInvalid()

File

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

Class

NotBlankValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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