Пример #1
0
 /**
  * Test that height() validates the height of an image is exact.
  */
 public function testHeight()
 {
     $this->assertTrue(Validate::height($this->image, 267));
     $this->assertFalse(Validate::height($this->image, 233));
 }