You are here

public function NotNullValidatorTest::testValidValues in Plug 7

@dataProvider getValidValues

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/NotNullValidatorTest.php, line 33

Class

NotNullValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidValues($value) {
  $this->validator
    ->validate($value, new NotNull());
  $this
    ->assertNoViolation();
}