diff --git a/src/AdminAssistant.Test/AutoMapper_WebAPIMappingProfile_UnitTest.cs b/src/AdminAssistant.Test/AutoMapper_WebAPIMappingProfile_UnitTest.cs index 91bd6866..86d06311 100644 --- a/src/AdminAssistant.Test/AutoMapper_WebAPIMappingProfile_UnitTest.cs +++ b/src/AdminAssistant.Test/AutoMapper_WebAPIMappingProfile_UnitTest.cs @@ -60,7 +60,6 @@ public void HaveValidConfiguration() [InlineData(typeof(BankAccountTransaction), typeof(BankAccountTransactionResponseDto))] [InlineData(typeof(BankAccountCreateRequestDto), typeof(BankAccount))] [InlineData(typeof(BankAccountUpdateRequestDto), typeof(BankAccount))] - public void ShouldSupportAccountsModuleMappingFromSourceToDestination(Type source, Type destination) { // Arrange @@ -136,6 +135,8 @@ public void ShouldSupportContactsModuleMappingFromSourceToDestination(Type sourc [Theory] [Trait("Category", "Unit")] [InlineData(typeof(Currency), typeof(CurrencyResponseDto))] + [InlineData(typeof(CurrencyCreateRequestDto), typeof(Currency))] + [InlineData(typeof(CurrencyUpdateRequestDto), typeof(Currency))] public void ShouldSupportCoreModuleMappingFromSourceToDestination(Type source, Type destination) { // Arrange