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.
39 lines
1.3 KiB
39 lines
1.3 KiB
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Volo.Abp.EntityFrameworkCore;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.PermissionManagement.EntityFrameworkCore;
|
|
using Volo.Abp.Uow;
|
|
|
|
namespace Volo.Abp.PermissionManagement
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpPermissionManagementEntityFrameworkCoreModule),
|
|
typeof(AbpPermissionManagementTestBaseModule))]
|
|
public class AbpPermissionManagementTestModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddEntityFrameworkInMemoryDatabase();
|
|
|
|
var databaseName = Guid.NewGuid().ToString();
|
|
|
|
services.Configure<AbpDbContextOptions>(options =>
|
|
{
|
|
options.Configure(context =>
|
|
{
|
|
context.DbContextOptions.UseInMemoryDatabase(databaseName);
|
|
});
|
|
});
|
|
|
|
services.Configure<UnitOfWorkDefaultOptions>(options =>
|
|
{
|
|
options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled; //EF in-memory database does not support transactions
|
|
});
|
|
|
|
services.AddAssemblyOf<AbpPermissionManagementTestModule>();
|
|
}
|
|
}
|
|
}
|