Esempio n. 1
0
 /**
  * @group exiftool
  * @covers \PHPExif\Adapter\Exiftool::setNumeric
  */
 public function testSetNumericInProperty()
 {
     $reflProperty = new \ReflectionProperty('\\PHPExif\\Adapter\\Exiftool', 'numeric');
     $reflProperty->setAccessible(true);
     $expected = true;
     $this->adapter->setNumeric($expected);
     $this->assertEquals($expected, $reflProperty->getValue($this->adapter));
 }