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

57 lines
1.1 KiB
PHP
Raw Normal View History

2011-09-22 05:49:42 +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-22 05:49:42 +02:00
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
use const INF;
2017-11-04 11:21:40 +01:00
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\Even
*
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author Jean Pimentel <jeanfap@gmail.com>
* @author Paul Karikari <paulkarikari1@gmail.com>
*/
final class EvenTest extends RuleTestCase
2011-09-22 05:49:42 +02:00
{
/**
* {@inheritDoc}
2011-09-22 05:49:42 +02:00
*/
public static function providerForValidInput(): array
2011-09-22 05:49:42 +02:00
{
2015-10-18 03:44:47 +02:00
return [
[new Even(), 2],
[new Even(), -2],
[new Even(), 0],
[new Even(), 32],
2015-10-18 03:44:47 +02:00
];
2011-09-22 05:49:42 +02:00
}
/**
* {@inheritDoc}
*/
public static function providerForInvalidInput(): array
2011-09-22 05:49:42 +02:00
{
2015-10-18 03:44:47 +02:00
return [
[new Even(), ''],
[new Even(), INF],
[new Even(), 2.2],
[new Even(), -5],
[new Even(), -1],
[new Even(), 1],
[new Even(), 13],
2015-10-18 03:44:47 +02:00
];
2011-09-22 05:49:42 +02:00
}
2011-09-22 22:41:07 +02:00
}