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.
abp/modules/background-jobs/test/Volo.Abp.BackgroundJobs.Tes.../Volo.Abp/BackgroundJobs/BackgroundJobsTestBaseModul...

40 lines
1.1 KiB

using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.Autofac;
using Volo.Abp.Modularity;
namespace Volo.Abp.BackgroundJobs
{
[DependsOn(
typeof(AbpAutofacModule),
typeof(AbpTestBaseModule),
typeof(BackgroundJobsDomainModule)
)]
public class BackgroundJobsTestBaseModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.Configure<BackgroundJobOptions>(options =>
{
options.IsEnabled = false;
});
context.Services.AddAssemblyOf<BackgroundJobsTestBaseModule>();
}
public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
SeedTestData(context);
}
private static void SeedTestData(ApplicationInitializationContext context)
{
using (var scope = context.ServiceProvider.CreateScope())
{
scope.ServiceProvider
.GetRequiredService<BackgroundJobsTestDataBuilder>()
.Build();
}
}
}
}