using Shouldly; using Xunit; namespace Volo.Abp.ObjectMapping; public class ContextSpecificMapper_Tests : AbpObjectMappingTestBase { [Fact] public void Should_Resolve_Correct_ObjectMappper_For_Specific_Context() { GetRequiredService>() .ShouldBeOfType(typeof(DefaultObjectMapper)); GetRequiredService>() .ShouldBeOfType(typeof(Test1AutoObjectMappingProvider)); GetRequiredService>() .ShouldBeOfType(typeof(DefaultObjectMapper)); GetRequiredService>() .ShouldBeOfType(typeof(Test2AutoObjectMappingProvider)); } }