Skip to content

Commit

Permalink
checking image width, height and filetype
Browse files Browse the repository at this point in the history
  • Loading branch information
kiproping committed Apr 3, 2018
1 parent 0a1cc4a commit 120ecfb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Pslayers/PslayersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -301,5 +301,8 @@ public function testOptionalOutputPath()
$this->assertNotEmpty($instance->layers);
$this->assertInstanceOf(LayerCollection::class, $instance->layers);
$this->assertInstanceOf(Imagick::class, $img);
$this->assertEquals($width, $img->getImageWidth());
$this->assertEquals($height, $img->getImageHeight());
$this->assertEquals('png32', $img->getImageFormat());
}
}

0 comments on commit 120ecfb

Please sign in to comment.