Exemplo n.º 1
0
 public function testIsTransparentMethodReturnsTrueWhenColorIsFullyTransparent()
 {
     $color = new Color(255, 255, 255, 127);
     $this->assertTrue($color->isTransparent());
     $color = new Color(255, 255, 255, 0.5);
     $this->assertFalse($color->isTransparent());
 }