public async Task TestAddToQueue()
        {
            var songUrls = new[]
            {
                "url1",
                "url2"
            };

            await _spotifyController.AddToQueue(songUrls);

            await _localApi.Received(1).Queue(songUrls[0]);

            await _localApi.Received(1).Queue(songUrls[1]);
        }