* * For the full copyright and license information, please view the "LICENSE.md" * file that was distributed with this source code. */ declare(strict_types=1); namespace Respect\Validation\Rules; use Respect\Validation\Test\RuleTestCase; use stdClass; use function tmpfile; /** * @group rule * @covers \Respect\Validation\Rules\Odd * * @author Danilo Benevides * @author Gabriel Caruso * @author Henrique Moody * @author Jean Pimentel */ final class OddTest extends RuleTestCase { /** * {@inheritdoc} */ public function providerForValidInput(): array { $rule = new Odd(); return [ [$rule, -5], [$rule, -1], [$rule, 1], [$rule, 13], ]; } /** * {@inheritdoc} */ public function providerForInvalidInput(): array { $rule = new Odd(); return [ [$rule, []], [$rule, new stdClass()], [$rule, tmpfile()], [$rule, true], [$rule, false], [$rule, ''], [$rule, -2], [$rule, -0], [$rule, 0], [$rule, 32], ]; } }