Example #1
0
 /**
  * Test supportsExif() returns a boolean.
  */
 public function testSupportsExif()
 {
     $file1 = new File(TEMP_DIR . '/exif-data.jpg');
     $file2 = new File(TEMP_DIR . '/magic-mime-verify.js');
     $this->assertTrue($file1->supportsExif());
     $this->assertFalse($file2->supportsExif());
 }