Skip to content

Commit

Permalink
FhirUtilsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
coilysiren committed Jul 15, 2024
1 parent a5a9a30 commit 0998ee9
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@ void testAddMbiIdsToEobs() {
}
}

@Test
void testNullInputs() {
assertDoesNotThrow(() -> {
FhirUtils.addMbiIdsToEobs(null, null, null);
});
}

public static Identifiers createIdentifier(long beneficiaryId, String currentMbi, String... historicMbis) {
return new Identifiers(beneficiaryId, currentMbi, new LinkedHashSet<>(Set.of(historicMbis)));
}
Expand Down

0 comments on commit 0998ee9

Please sign in to comment.