You are here

public function IsFalseValidatorTest::testNullIsValid in Plug 7

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/IsFalseValidatorTest.php, line 30

Class

IsFalseValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testNullIsValid() {
  $this->validator
    ->validate(null, new IsFalse());
  $this
    ->assertNoViolation();
}