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

59 lines
1.2 KiB
PHP
Raw Normal View History

2015-08-20 06:17:24 +02:00
<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
2015-08-20 06:17:24 +02:00
*/
declare(strict_types=1);
2015-08-20 06:17:24 +02:00
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
use Respect\Validation\Test\Stubs\WithMethods;
use stdClass;
use const INF;
2017-11-04 11:21:40 +01:00
2015-08-20 06:17:24 +02:00
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\CallableType
*
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
2015-08-20 06:17:24 +02:00
*/
final class CallableTypeTest extends RuleTestCase
2015-08-20 06:17:24 +02:00
{
/**
* {@inheritDoc}
2015-08-20 06:17:24 +02:00
*/
public static function providerForValidInput(): array
2015-08-20 06:17:24 +02:00
{
$rule = new CallableType();
2015-08-20 06:17:24 +02:00
2015-10-18 03:44:47 +02:00
return [
[$rule, static fn() => null],
[$rule, 'trim'],
[$rule, WithMethods::class . '::publicStaticMethod'],
[$rule, [new WithMethods(), 'publicMethod']],
2015-10-18 03:44:47 +02:00
];
2015-08-20 06:17:24 +02:00
}
/**
* {@inheritDoc}
*/
public static function providerForInvalidInput(): array
2015-08-20 06:17:24 +02:00
{
$rule = new CallableType();
2015-10-18 03:44:47 +02:00
return [
[$rule, ' '],
[$rule, INF],
[$rule, []],
[$rule, new stdClass()],
[$rule, null],
2015-10-18 03:44:47 +02:00
];
2015-08-20 06:17:24 +02:00
}
}