예제 #1
0
파일: ColorTest.php 프로젝트: phower/image
 public function testFromHexMethodCreatesNewInstanceFromHexadecimalCode()
 {
     $color = Color::fromHex('#ffcc00');
     $this->assertEquals(255, $color->getRed());
     $this->assertEquals(204, $color->getGreen());
     $this->assertEquals(0, $color->getBlue());
 }