tao-test/app/vendor/respect/validation/tests/unit/Rules/EvenTest.php

71 lines
1.5 KiB
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Rules;
use Respect\Validation\TestCase;
/**
* @group rule
* @covers Respect\Validation\Rules\Even
* @covers Respect\Validation\Exceptions\EvenException
*/
class EvenTest extends TestCase
{
protected $evenValidator;
protected function setUp()
{
$this->evenValidator = new Even();
}
/**
* @dataProvider providerForEven
*/
public function testEvenNumbersShouldPass($input)
{
$this->assertTrue($this->evenValidator->validate($input));
$this->assertTrue($this->evenValidator->check($input));
$this->assertTrue($this->evenValidator->assert($input));
}
/**
* @dataProvider providerForNotEven
* @expectedException Respect\Validation\Exceptions\EvenException
*/
public function testNotEvenNumbersShouldFail($input)
{
$this->assertFalse($this->evenValidator->validate($input));
$this->assertFalse($this->evenValidator->assert($input));
}
public function providerForEven()
{
return [
[''],
[-2],
[-0],
[0],
[32],
];
}
public function providerForNotEven()
{
return [
[-5],
[-1],
[1],
[13],
];
}
}