You are here

public function BlankValidatorTest::testBlankIsValid in Plug 7

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/BlankValidatorTest.php, line 37

Class

BlankValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testBlankIsValid() {
  $this->validator
    ->validate('', new Blank());
  $this
    ->assertNoViolation();
}