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