This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/Tests/Constraints/FalseValidatorTest.php

51 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Validator\Tests\Constraints;
use Symfony\Component\Validator\Constraints\False;
use Symfony\Component\Validator\Constraints\FalseValidator;
class FalseValidatorTest extends AbstractConstraintValidatorTest
{
protected function createValidator()
{
return new FalseValidator();
}
public function testNullIsValid()
{
$this->validator->validate(null, new False());
$this->assertNoViolation();
}
public function testFalseIsValid()
{
$this->validator->validate(false, new False());
$this->assertNoViolation();
}
public function testTrueIsInvalid()
{
$constraint = new False(array(
2014-09-21 19:53:12 +01:00
'message' => 'myMessage',
));
$this->validator->validate(true, $constraint);
$this->assertViolation('myMessage', array(
2014-09-21 19:53:12 +01:00
'{{ value }}' => 'true',
));
}
2011-06-08 18:56:59 +01:00
}