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

58 lines
1.1 KiB
PHP
Raw Normal View History

2011-09-13 17:19:04 +02:00
<?php
2015-06-08 16:47:14 +02:00
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
2011-09-13 17:19:04 +02:00
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
use stdClass;
2017-11-04 11:21:40 +01:00
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\BoolType
*
* @author Devin Torres <devin@devintorres.com>
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BoolTypeTest extends RuleTestCase
2011-09-13 17:19:04 +02:00
{
/**
* {@inheritDoc}
*/
public static function providerForValidInput(): array
2011-09-13 17:19:04 +02:00
{
$rule = new BoolType();
return [
[$rule, true],
[$rule, false],
];
2011-09-13 17:19:04 +02:00
}
/**
* {@inheritDoc}
2011-09-13 17:19:04 +02:00
*/
public static function providerForInvalidInput(): array
2011-09-13 17:19:04 +02:00
{
$rule = new BoolType();
return [
[$rule, ''],
[$rule, 'foo'],
[$rule, 123123],
[$rule, new stdClass()],
[$rule, []],
[$rule, 1],
[$rule, 0],
[$rule, null],
];
2011-09-13 17:19:04 +02:00
}
}