You are here

public function IsNullValidatorTest::testNullIsValid in Plug 7

File

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

Class

IsNullValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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