-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAINT-1947 Unit test for nested FHIR ValueSet
- Loading branch information
1 parent
c82a88a
commit 229d2a4
Showing
2 changed files
with
34 additions
and
0 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
16 changes: 16 additions & 0 deletions
16
src/test/resources/dummy-fhir-content/exampleVS_incude_implicit_VS.json
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 @@ | ||
{ | ||
"resourceType": "ValueSet", | ||
"status": "active", | ||
"name": "Test nested VS", | ||
"id": "test-nested-vs", | ||
"title": "Test Nested VS", | ||
"version": "0.0.1", | ||
"url": "http://snomed.test/fhir/ValueSet/test-nested-vs", | ||
"compose": { | ||
"include": [ | ||
{ | ||
"valueSet": "http://snomed.info/sct?fhir_vs=ecl/<138875005" | ||
} | ||
] | ||
} | ||
} |