47 lines
958 B
PHP
47 lines
958 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\AlwaysValid
|
|
*/
|
|
class AlwaysValidTest extends TestCase
|
|
{
|
|
public function providerForValidAlwaysValid()
|
|
{
|
|
return [
|
|
[0],
|
|
[1],
|
|
['string'],
|
|
[true],
|
|
[false],
|
|
[null],
|
|
[''],
|
|
[[]],
|
|
[['array_full']],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForValidAlwaysValid
|
|
*/
|
|
public function testShouldValidateInputWhenItIsAValidAlwaysValid($input)
|
|
{
|
|
$rule = new AlwaysValid();
|
|
|
|
$this->assertTrue($rule->validate($input));
|
|
}
|
|
}
|