Skip to content

Commit

Permalink
fix junit
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedetta-fabbri committed Jan 28, 2025
1 parent c2cd672 commit 825a016
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ void givenMapToDtoThenOk(){

reflectionEqualsByName(installmentExpected, result, "debtor");
checkNotNullFields(result, "debtor");
checkNotNullFields(result.getSyncStatus());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ void testMapInstallmentNoPII() {
Installment result = mapper.map(installmentNoPII);
//then
TestUtils.checkNotNullFields(result);
TestUtils.checkNotNullFields(result.getSyncStatus());
Mockito.verify(personalDataServiceMock, Mockito.times(1)).get(installmentNoPII.getPersonalDataId(), InstallmentPIIDTO.class);
}
//endregion
Expand Down

0 comments on commit 825a016

Please sign in to comment.