Exemplo n.º 1
0
 public function testToRgbMethodReturnsColorAsAStandardCssRgbNotation()
 {
     $color = new Color(255, 204, 0);
     $this->assertEquals('rgb(255, 204, 0)', $color->toRgb());
 }