Просмотр файла libarea-0.9/vendor/utopia-php/framework/tests/Validator/HexColorTest.php

Размер файла: 848B
<?php

namespace Utopia\Validator;

use PHPUnit\Framework\TestCase;

class HexColorTest extends TestCase
{
    public function testCanValidateHexColor()
    {
        $hexColor = new HexColor();
        $this->assertTrue($hexColor->isValid('000'));
        $this->assertTrue($hexColor->isValid('ffffff'));
        $this->assertTrue($hexColor->isValid('fff'));
        $this->assertTrue($hexColor->isValid('000000'));

        $this->assertFalse($hexColor->isValid('AB10BC99'));
        $this->assertFalse($hexColor->isValid('AR1012'));
        $this->assertFalse($hexColor->isValid('ab12bc99'));
        $this->assertFalse($hexColor->isValid('00'));
        $this->assertFalse($hexColor->isValid('ffff'));
        $this->assertFalse($hexColor->isArray());

        $this->assertEquals(\Utopia\Validator::TYPE_STRING, $hexColor->getType());
    }
}