Beispiel #1
0
 /**
  * @group exif
  * @covers \PHPExif\Exif::getIso
  */
 public function testGetIso()
 {
     $expected = 200;
     $data[\PHPExif\Exif::ISO] = $expected;
     $this->exif->setData($data);
     $this->assertEquals($expected, $this->exif->getIso());
 }