public function testPathWithRealFile()
 {
     $object = new Drawing();
     $imagePath = PHPPRESENTATION_TESTS_BASE_DIR . DIRECTORY_SEPARATOR . 'resources' . DIRECTORY_SEPARATOR . 'images' . DIRECTORY_SEPARATOR . 'PhpPresentationLogo.png';
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Drawing', $object->setPath($imagePath, false));
     $this->assertEquals($imagePath, $object->getPath());
     $this->assertEquals(0, $object->getWidth());
     $this->assertEquals(0, $object->getHeight());
 }