-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AB2D-6148] increase
ab2d-fhir
code coverage (#394)
* checkpoint-kai-1718661872 * PatientIdentifierUtilsTest * testNullInput * VersionsTest * VersionsTest * PatientIdentifierUtilsTest * PatientIdentifierUtilsTest * PatientIdentifierUtilsTest * PatientIdentifierUtilsTest * PatientIdentifierUtilsTest * PatientIdentifierUtilsTest * PatientIdentifierUtilsTest * version
- Loading branch information
1 parent
2be55f9
commit ef5f588
Showing
5 changed files
with
142 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
ab2d-fhir/src/test/java/gov/cms/ab2d/fhir/VersionNotSupportedTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package gov.cms.ab2d.fhir; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertThrows; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
class VersionNotSupportedTest { | ||
|
||
@Test | ||
void testConstructor() { | ||
assertThrows(RuntimeException.class, () -> { | ||
throw new VersionNotSupported("test"); | ||
}); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters