Skip to content

Commit

Permalink
#167 Added mappings for Currency CRUD DTOs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGeering committed Apr 7, 2021
1 parent 5594e59 commit 88bdb94
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 88bdb94

Please sign in to comment.