mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
using Microsoft.Extensions.DependencyInjection;
|
|
using Volo.Abp.Autofac;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.Settings;
|
|
|
|
namespace Volo.Abp.SettingManagement
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpAutofacModule),
|
|
typeof(AbpTestBaseModule),
|
|
typeof(AbpSettingManagementDomainModule))]
|
|
public class AbpSettingManagementTestBaseModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
context.Services.Configure<SettingOptions>(options =>
|
|
{
|
|
options.DefinitionProviders.Add<TestSettingDefinitionProvider>();
|
|
});
|
|
}
|
|
|
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
|
{
|
|
SeedTestData(context);
|
|
}
|
|
|
|
private static void SeedTestData(ApplicationInitializationContext context)
|
|
{
|
|
using (var scope = context.ServiceProvider.CreateScope())
|
|
{
|
|
scope.ServiceProvider
|
|
.GetRequiredService<SettingTestDataBuilder>()
|
|
.Build();
|
|
}
|
|
}
|
|
}
|
|
} |