/home/techb158/exp.abdallabala.com/vendor/respect/validation/tests/unit/Rules
Edit: /home/techb158/exp.abdallabala.com/vendor/respect/validation/tests/unit/Rules/LeapYearTest.php (1544B)
*
* 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;
use DateTime;
/**
* @group rule
* @covers Respect\Validation\Rules\LeapYear
* @covers Respect\Validation\Exceptions\LeapYearException
*/
class LeapYearTest extends TestCase
{
protected $leapYearValidator;
protected function setUp()
{
$this->leapYearValidator = new LeapYear();
}
public function testValidLeapDate()
{
$this->assertTrue($this->leapYearValidator->__invoke('2008'));
$this->assertTrue($this->leapYearValidator->__invoke('2008-02-29'));
$this->assertTrue($this->leapYearValidator->__invoke(2008));
$this->assertTrue($this->leapYearValidator->__invoke(
new DateTime('2008-02-29')
));
}
public function testInvalidLeapDate()
{
$this->assertFalse($this->leapYearValidator->__invoke(''));
$this->assertFalse($this->leapYearValidator->__invoke('2009'));
$this->assertFalse($this->leapYearValidator->__invoke('2009-02-29'));
$this->assertFalse($this->leapYearValidator->__invoke(2009));
$this->assertFalse($this->leapYearValidator->__invoke(
new DateTime('2009-02-29')
));
$this->assertFalse($this->leapYearValidator->__invoke([]));
}
}