예제 #1
0
파일: ColorTest.php 프로젝트: phower/image
 public function testFromIntMethodThrowsExceptionWhenValueIsNotBetween0And2147470591()
 {
     $this->setExpectedException('Phower\\Image\\Exception\\InvalidArgumentException');
     $color = Color::fromInt(9999999999.0);
 }