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

76 lines
1.7 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\Negative
* @covers Respect\Validation\Exceptions\NegativeException
*/
class NegativeTest extends TestCase
{
protected $negativeValidator;
protected function setUp()
{
$this->negativeValidator = new Negative();
}
/**
* @dataProvider providerForNegative
*/
public function testNegativeShouldPass($input)
{
$this->assertTrue($this->negativeValidator->assert($input));
$this->assertTrue($this->negativeValidator->__invoke($input));
$this->assertTrue($this->negativeValidator->check($input));
}
/**
* @dataProvider providerForNotNegative
* @expectedException Respect\Validation\Exceptions\NegativeException
*/
public function testNotNegativeNumbersShouldThrowNegativeException($input)
{
$this->assertFalse($this->negativeValidator->__invoke($input));
$this->assertFalse($this->negativeValidator->assert($input));
}
public function providerForNegative()
{
return [
['-1.44'],
[-1e-5],
[-10],
];
}
public function providerForNotNegative()
{
return [
[''],
[0],
[-0],
[null],
['a'],
[' '],
['Foo'],
[16],
['165'],
[123456],
[1e10],
];
}
}