예제 #1
0
파일: ColorTest.php 프로젝트: whismat/glide
 public function testNamedColorCode()
 {
     $color = new Color('black');
     $this->assertSame('rgba(0, 0, 0, 1)', $color->formatted());
 }
예제 #2
0
파일: ColorTest.php 프로젝트: mambax7/glide
 public function testUnknownColor()
 {
     $color = new Color('unknown');
     $this->assertSame('rgba(255, 255, 255, 0)', $color->formatted());
 }