mirror of https://github.com/abpframework/abp.git
2 changed files with 50 additions and 1 deletions
@ -0,0 +1,41 @@ |
|||
using System.Linq; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Shouldly; |
|||
using Volo.Abp.Modularity; |
|||
using Xunit; |
|||
|
|||
namespace Volo.Abp.DependencyInjection |
|||
{ |
|||
public class AutoServiceRegistration_Tests |
|||
{ |
|||
[Fact] |
|||
public void AutoServiceRegistration_Should_Not_Duplicate_Test() |
|||
{ |
|||
using (var application = AbpApplicationFactory.Create<TestModule>()) |
|||
{ |
|||
//Act
|
|||
application.Initialize(); |
|||
|
|||
//Assert
|
|||
var services = application.ServiceProvider.GetServices<TestService>().ToList(); |
|||
services.Count.ShouldBe(1); |
|||
} |
|||
} |
|||
} |
|||
|
|||
[DependsOn(typeof(TestDependedModule))] |
|||
public class TestModule : AbpModule |
|||
{ |
|||
|
|||
} |
|||
|
|||
public class TestDependedModule : AbpModule |
|||
{ |
|||
|
|||
} |
|||
|
|||
public class TestService : ITransientDependency |
|||
{ |
|||
|
|||
} |
|||
} |
|||
Loading…
Reference in new issue