getWidth() public method

* Returns the width of an image
public getWidth ( )
Example #1
0
 public function test_it_gets_the_correct_width()
 {
     $correctWidth = 512;
     $testWidth = $this->image->getWidth();
     $this->assertEquals($correctWidth, $testWidth);
 }