mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 23:59:51 +01:00
78 lines
1.8 KiB
PHP
78 lines
1.8 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;
|
|
|
|
/**
|
|
* @group rule
|
|
* @covers Respect\Validation\Rules\PrimeNumber
|
|
* @covers Respect\Validation\Exceptions\PrimeNumberException
|
|
*/
|
|
class PrimeNumberTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
protected $object;
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->object = new PrimeNumber();
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForPrimeNumber
|
|
*/
|
|
public function testPrimeNumber($input)
|
|
{
|
|
$this->assertTrue($this->object->__invoke($input));
|
|
$this->assertTrue($this->object->check($input));
|
|
$this->assertTrue($this->object->assert($input));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForNotPrimeNumber
|
|
* @expectedException Respect\Validation\Exceptions\PrimeNumberException
|
|
*/
|
|
public function testNotPrimeNumber($input)
|
|
{
|
|
$this->assertFalse($this->object->__invoke($input));
|
|
$this->assertFalse($this->object->assert($input));
|
|
}
|
|
|
|
public function providerForPrimeNumber()
|
|
{
|
|
return array(
|
|
array(''),
|
|
array(3),
|
|
array(5),
|
|
array(7),
|
|
array('3'),
|
|
array('5'),
|
|
array('+7'),
|
|
);
|
|
}
|
|
|
|
public function providerForNotPrimeNumber()
|
|
{
|
|
return array(
|
|
array(null),
|
|
array(0),
|
|
array(10),
|
|
array(25),
|
|
array(36),
|
|
array(-1),
|
|
array('-1'),
|
|
array('25'),
|
|
array('0'),
|
|
array('a'),
|
|
array(' '),
|
|
array('Foo'),
|
|
);
|
|
}
|
|
}
|