Вход Регистрация
Файл: gapps/vendor/fzaninotto/faker/test/Faker/Provider/ColorTest.php
Строк: 21
<?php

namespace FakerTestProvider;

use 
FakerProviderColor;

class 
ColorTest extends PHPUnit_Framework_TestCase
{

    public function 
testHexColor()
    {
        
$this->assertRegExp('/^#[a-f0-9]{6}$/i'Color::hexColor());
    }

    public function 
testSafeHexColor()
    {
        
$this->assertRegExp('/^#[a-f0-9]{6}$/i'Color::safeHexColor());
    }

    public function 
testRgbColorAsArray()
    {
        
$this->assertEquals(3count(Color::rgbColorAsArray()));
    }

    public function 
testRgbColor()
    {
        
$regexp '([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])';
        
$this->assertRegExp('/^' $regexp ',' $regexp ',' $regexp '$/i'Color::rgbColor());
    }

    public function 
testRgbCssColor()
    {
        
$regexp '([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])';
        
$this->assertRegExp('/^rgb(' $regexp ',' $regexp ',' $regexp ')$/i'Color::rgbCssColor());
    }

    public function 
testRgbaCssColor()
    {
        
$regexp '([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])';
        
$regexpAlpha '([01]?(.d+)?)';
        
$this->assertRegExp('/^rgba(' $regexp ',' $regexp ',' $regexp ',' $regexpAlpha ')$/i'Color::rgbaCssColor());
    }

    public function 
testSafeColorName()
    {
        
$this->assertRegExp('/^[w]+$/'Color::safeColorName());
    }

    public function 
testColorName()
    {
        
$this->assertRegExp('/^[w]+$/'Color::colorName());
    }
}
Онлайн: 2
Реклама