Пример #1
0
 /**
  * Test that maxHeight() returns true if the files height meets the maximum requirement.
  */
 public function testMaxHeight()
 {
     $this->assertTrue(Validate::maxHeight($this->image, 267));
     $this->assertTrue(Validate::maxHeight($this->image, 300));
     $this->assertFalse(Validate::maxHeight($this->image, 265));
     $this->assertFalse(Validate::maxHeight($this->image, 144));
 }