예제 #1
0
파일: ColorTest.php 프로젝트: phower/image
 public function testFromArrayMethodThrowsExceptionWhenArrayDoesntHave3Or4ElementsOnly()
 {
     $this->setExpectedException('Phower\\Image\\Exception\\InvalidArgumentException');
     $color = Color::fromArray([255, 204]);
 }