mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-04 06:04:39 -04:00
22 lines
508 B
C#
22 lines
508 B
C#
using Kyoo.InternalAPI;
|
|
using Microsoft.Extensions.Configuration;
|
|
using NUnit.Framework;
|
|
|
|
namespace UnitTests.Kyoo_InternalAPI
|
|
{
|
|
public class LibraryTests
|
|
{
|
|
private IConfiguration config;
|
|
private ILibraryManager libraryManager;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
config = new ConfigurationBuilder()
|
|
.AddJsonFile("appsettings.json")
|
|
.Build();
|
|
libraryManager = new LibraryManager(config);
|
|
}
|
|
}
|
|
}
|