assertEquals( Mime::detect($test), $output ); } /** * Provider for testDetect * * @return array data for testDetect */ public function providerForTestDetect(): array { return [ [ 'pma', 'application/octet-stream', ], [ 'GIF', 'image/gif', ], [ "\x89PNG", 'image/png', ], [ chr(0xff) . chr(0xd8), 'image/jpeg', ], ]; } }