* * 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)); } }