-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update terminology client to use url param #485
Conversation
Formatting check succeeded! |
@@ -54,13 +54,27 @@ void testR4UrlAndVersion() { | |||
|
|||
// when the valueset has a version it should be in params | |||
vs.setVersion(version); | |||
client.expand(vs, authoritativeSource, new org.hl7.fhir.r4.model.Parameters(), username, password); | |||
client.expand(vs, authoritativeSource, null, username, password); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these changes are to add a bit more coverage
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #485 +/- ##
============================================
+ Coverage 62.02% 62.11% +0.08%
- Complexity 3558 3571 +13
============================================
Files 328 328
Lines 17603 17621 +18
Branches 2715 2715
============================================
+ Hits 10919 10946 +27
+ Misses 5472 5469 -3
+ Partials 1212 1206 -6 ☔ View full report in Codecov by Sentry. |
expansionParameters = new org.hl7.fhir.r4.model.Parameters(); | ||
} | ||
expansionParameters.addParameter("url", new org.hl7.fhir.r4.model.UriType(url)); | ||
expansionParameters.addParameter("valueSetVersion", new org.hl7.fhir.r4.model.StringType(version)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe extract valueSetVersion to a const as it's used in many places?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My branch makes significant changes to this class. Will need to discuss.
superseded by #488 |
No description provided.