예제 #1
0
 function testGetHex()
 {
     $color = new Image_Color2('white');
     $result = $color->getHex();
     $this->assertInternalType('string', $result);
     $this->assertEquals('#ffffff', $result);
 }