コード例 #1
0
 /**
  * @dataProvider hex2rgbProvider
  **/
 public function testHex2rgb($sHexValue, $aExpected)
 {
     $aRGB = CSSColorUtils::hex2rgb($sHexValue);
     $this->assertSame($aRGB, $aExpected);
 }
コード例 #2
0
 public function fromHex($sValue)
 {
     $aRGB = CSSColorUtils::hex2rgb($sValue);
     return $this->fromRGB($aRGB);
 }