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/framework/test/Volo.Abp.Ldap.Tests/Volo/Abp/Ldap/AbpLdapTestModule.cs

22 lines
489 B

using Volo.Abp.Autofac;
using Volo.Abp.Modularity;
using Volo.Abp.Settings;
namespace Volo.Abp.Ldap;
[DependsOn(
typeof(AbpAutofacModule),
typeof(AbpLdapModule),
typeof(AbpTestBaseModule)
)]
public class AbpLdapTestModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpSettingOptions>(options =>
{
options.ValueProviders.Add<TestLdapSettingValueProvider>();
});
}
}