Viewing file: ColorTest.php (1.41 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Faker\Test\Provider;
use Faker\Provider\Color;
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(3, count(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()); } }
|