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