public function NotNullValidatorTest::testValidValues in Plug 7
@dataProvider getValidValues
File
- lib/Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Constraints/ NotNullValidatorTest.php, line 33 
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testValidValues($value) {
  $this->validator
    ->validate($value, new NotNull());
  $this
    ->assertNoViolation();
}