tao-test/app/vendor/respect/validation/tests/unit/Rules/AlwaysInvalidTest.php

47 lines
971 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;
use Respect\Validation\TestCase;
/**
* @group rule
* @covers Respect\Validation\Rules\AlwaysInvalid
*/
class AlwaysInvalidTest extends 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));
}
}