mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05: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);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |