Skip to content

Commit 2311333

Browse files
committed
missing test for FhirParserConfig
1 parent 68d3289 commit 2311333

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)