class BlankValidatorTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Constraints/BlankValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\BlankValidatorTest
Hierarchy
- class \Symfony\Component\Validator\Tests\Constraints\AbstractConstraintValidatorTest extends \Symfony\Component\Validator\Tests\Constraints\PHPUnit_Framework_TestCase
- class \Symfony\Component\Validator\Tests\Constraints\BlankValidatorTest
Expanded class hierarchy of BlankValidatorTest
File
- vendor/
symfony/ validator/ Tests/ Constraints/ BlankValidatorTest.php, line 18
Namespace
Symfony\Component\Validator\Tests\ConstraintsView source
class BlankValidatorTest extends AbstractConstraintValidatorTest {
protected function getApiVersion() {
return Validation::API_VERSION_2_5;
}
protected function createValidator() {
return new BlankValidator();
}
public function testNullIsValid() {
$this->validator
->validate(null, new Blank());
$this
->assertNoViolation();
}
public function testBlankIsValid() {
$this->validator
->validate('', new Blank());
$this
->assertNoViolation();
}
/**
* @dataProvider getInvalidValues
*/
public function testInvalidValues($value, $valueAsString) {
$constraint = new Blank(array(
'message' => 'myMessage',
));
$this->validator
->validate($value, $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ value }}', $valueAsString)
->assertRaised();
}
public function getInvalidValues() {
return array(
array(
'foobar',
'"foobar"',
),
array(
0,
'0',
),
array(
false,
'false',
),
array(
1234,
'1234',
),
);
}
}