respect-validation/tests/unit/Rules/AlwaysInvalidTest.php

58 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
2015-06-08 16:47:14 +02:00
namespace Respect\Validation\Rules;
2018-12-05 08:36:38 +01:00
use Respect\Validation\Test\TestCase;
2017-11-04 11:21:40 +01:00
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\AlwaysInvalid
*
* @author Andreas Wolf <dev@a-w.io>
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author William Espindola <oi@williamespindola.com.br>
*/
final class AlwaysInvalidTest extends TestCase
2015-06-08 16:47:14 +02:00
{
/**
* @test
*
* @dataProvider providerForInvalidInput
*
* @param mixed $input
*/
public function itShouldAlwaysBeInvalid($input): void
{
$rule = new AlwaysInvalid();
self::assertFalse($rule->validate($input));
}
/**
* @return mixed[][]
*/
public static function providerForInvalidInput(): array
2015-10-19 16:54:35 +02:00
{
return [
[0],
[1],
['string'],
[true],
[false],
[null],
[''],
[[]],
[['array_full']],
];
}
}