コード例 #1
0
ファイル: ImageFileTest.php プロジェクト: enyo/rincewind
 public function testSetAndGetDestinationHeight()
 {
     $this->imageFile->setDestinationHeight(33);
     self::assertEquals(33, $this->imageFile->getDestinationHeight());
     $this->imageFile->setDestinationHeight(45);
     self::assertEquals(45, $this->imageFile->getDestinationHeight());
 }