getAlbumInfo() public method

Get information about an album.
public getAlbumInfo ( string $name, string $artistName ) : array | false
$name string Name of the album
$artistName string Name of the artist
return array | false
 public function testGetAlbumInfoFailed()
 {
     $client = m::mock(Client::class, ['get' => new Response(400, [], file_get_contents(dirname(__FILE__) . '/blobs/lastfm/album-notfound.xml'))]);
     $api = new Lastfm(null, null, $client);
     $this->assertFalse($api->getAlbumInfo('foo', 'bar'));
 }