Ejemplo n.º 1
0
 /**
  * @dataProvider hex2rgbProvider
  **/
 public function testHex2rgb($sHexValue, $aExpected)
 {
     $aRGB = CSSColorUtils::hex2rgb($sHexValue);
     $this->assertSame($aRGB, $aExpected);
 }
Ejemplo n.º 2
0
 public function fromHex($sValue)
 {
     $aRGB = CSSColorUtils::hex2rgb($sValue);
     return $this->fromRGB($aRGB);
 }