using Centron.BusinessLogic.Administration.Licensing; using Centron.Interfaces.Administration.Logins; namespace Centron.Tests.BL.Fixtures; public class LicenseManagerFixture { public LicenseManagerFixture() { var licenses = new Dictionary { [LicenseGuids.Centron] = "c-entron.NET" }; try { LicenseManager.Initialize(LicenseManager.SettingsForTests(licenses)); LicenseManager.Instance.LoadLicenses().Wait(); } catch (Exception) { // The LicenseManager is already initialized } } }