respect-validation/tests/unit/Rules/AlwaysInvalidTest.php
2015-10-19 14:17:47 -02:00

44 lines
956 B
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Rules;
/**
* @group rule
* @covers Respect\Validation\Rules\AlwaysInvalid
*/
class AlwaysInvalidTest extends \PHPUnit_Framework_TestCase
{
public function providerForValidAlwaysInvalid()
{
return [
[0],
[1],
['string'],
[true],
[false],
[null],
[''],
[[]],
[['array_full']],
];
}
/**
* @dataProvider providerForValidAlwaysInvalid
*/
public function testShouldValidateInputWhenItIsAValidAlwaysInvalid($input)
{
$rule = new AlwaysInvalid();
$this->assertFalse($rule->validate($input));
}
}