Create unit tests for "AlwaysValid" rule

This commit is contained in:
Paulo Eduardo 2015-10-17 13:04:27 -03:00 committed by Henrique Moody
parent a30b730969
commit 2ac90907e7

View file

@ -0,0 +1,44 @@
<?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\AlwaysValid
*/
class AlwaysValidTest extends \PHPUnit_Framework_TestCase
{
public function providerForValidAlwaysValid()
{
return array(
array(0),
array(1),
array('string'),
array(true),
array(false),
array(null),
array(''),
array(array()),
array(array('array_full')),
);
}
/**
* @dataProvider providerForValidAlwaysValid
*/
public function testShouldValidateInputWhenItIsAValidAlwaysValid($input)
{
$rule = new AlwaysValid();
$this->assertTrue($rule->validate($input));
}
}