assertEquals( PMA_detectMIME($test), $output ); } /** * Provider for testPMA_detectMIME * * @return array data for testPMA_detectMIME */ public function providerForTestDetectMIME() { return array( array( 'pma', 'application/octet-stream' ), array( 'GIF', 'image/gif' ), array( "\x89PNG", 'image/png' ), array( chr(0xff) . chr(0xd8), 'image/jpeg' ), ); } }