using Longbow.Data; using Microsoft.AspNetCore.Hosting; using Xunit; namespace Bootstrap.Admin { /// /// /// [CollectionDefinition("MySqlContext")] public class MySqlContext : ICollectionFixture { } /// /// /// public class BAMySqlWebHost : BALoginWebHost { /// /// /// /// protected override void ConfigureWebHost(IWebHostBuilder builder) { base.ConfigureWebHost(builder); builder.ConfigureDatabase(DatabaseProviderType.MySql); } } }