/** * @group exif * @covers \PHPExif\Exif::getCredit */ public function testGetCredit() { $expected = '*****@*****.**'; $data[\PHPExif\Exif::CREDIT] = $expected; $this->exif->setData($data); $this->assertEquals($expected, $this->exif->getCredit()); }