We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68d3289 commit 2311333Copy full SHA for 2311333
service/src/test/java/uk/nhs/adaptors/gp2gp/common/configuration/FhirParserConfigTest.java
@@ -0,0 +1,22 @@
1
+package uk.nhs.adaptors.gp2gp.common.configuration;
2
+
3
+import org.junit.jupiter.api.BeforeEach;
4
+import org.junit.jupiter.api.Test;
5
6
+import static org.junit.jupiter.api.Assertions.*;
7
8
+class FhirParserConfigTest {
9
10
+ FhirParserConfig fhirParserConfig;
11
12
+ @BeforeEach
13
+ void setUp() {
14
+ fhirParserConfig = new FhirParserConfig();
15
+ }
16
17
+ @Test
18
+ void shouldCreateValidConfig() {
19
+ assertNotNull(fhirParserConfig.fhirContext());
20
21
22
+}
0 commit comments