mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-09 23:55:10 -05:00
feat: playlist implementation
This commit is contained in:
@@ -24,6 +24,7 @@ public class DeezerDownloadServiceTests : IDisposable
|
||||
private readonly Mock<ILocalLibraryService> _localLibraryServiceMock;
|
||||
private readonly Mock<IMusicMetadataService> _metadataServiceMock;
|
||||
private readonly Mock<ILogger<DeezerDownloadService>> _loggerMock;
|
||||
private readonly Mock<IServiceProvider> _serviceProviderMock;
|
||||
private readonly IConfiguration _configuration;
|
||||
private readonly string _testDownloadPath;
|
||||
|
||||
@@ -41,6 +42,7 @@ public class DeezerDownloadServiceTests : IDisposable
|
||||
_localLibraryServiceMock = new Mock<ILocalLibraryService>();
|
||||
_metadataServiceMock = new Mock<IMusicMetadataService>();
|
||||
_loggerMock = new Mock<ILogger<DeezerDownloadService>>();
|
||||
_serviceProviderMock = new Mock<IServiceProvider>();
|
||||
|
||||
_configuration = new ConfigurationBuilder()
|
||||
.AddInMemoryCollection(new Dictionary<string, string?>
|
||||
@@ -90,6 +92,7 @@ public class DeezerDownloadServiceTests : IDisposable
|
||||
_metadataServiceMock.Object,
|
||||
subsonicSettings,
|
||||
deezerSettings,
|
||||
_serviceProviderMock.Object,
|
||||
_loggerMock.Object);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user