class NotNullValidatorTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Constraints/NotNullValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\NotNullValidatorTest
Hierarchy
- class \Symfony\Component\Validator\Tests\Constraints\AbstractConstraintValidatorTest extends \Symfony\Component\Validator\Tests\Constraints\PHPUnit_Framework_TestCase
- class \Symfony\Component\Validator\Tests\Constraints\NotNullValidatorTest
Expanded class hierarchy of NotNullValidatorTest
File
- vendor/
symfony/ validator/ Tests/ Constraints/ NotNullValidatorTest.php, line 18
Namespace
Symfony\Component\Validator\Tests\ConstraintsView source
class NotNullValidatorTest extends AbstractConstraintValidatorTest {
protected function getApiVersion() {
return Validation::API_VERSION_2_5;
}
protected function createValidator() {
return new NotNullValidator();
}
/**
* @dataProvider getValidValues
*/
public function testValidValues($value) {
$this->validator
->validate($value, new NotNull());
$this
->assertNoViolation();
}
public function getValidValues() {
return array(
array(
0,
),
array(
false,
),
array(
true,
),
array(
'',
),
);
}
public function testNullIsInvalid() {
$constraint = new NotNull(array(
'message' => 'myMessage',
));
$this->validator
->validate(null, $constraint);
$this
->buildViolation('myMessage')
->assertRaised();
}
}