Skip to content

Commit

Permalink
Merge pull request #3062 from IBM/lee-main-3
Browse files Browse the repository at this point in the history
bandaid for senstivie CARIN BB search tests
  • Loading branch information
lmsurpre authored Dec 1, 2021
2 parents 69f79f8 + 691faed commit 5bae423
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,7 @@ public void testCARINBlueButton_Coverage_Patient_SearchParameter() throws Except
@Test
public void testCARINBlueButton_ExplanationOfBenefit_Created_SearchParameter() throws Exception {
FHIRParameters parameters = new FHIRParameters();
parameters.queryParam("_count", "100");
parameters.searchParam("created", "2019-11-02T00:00:00+00:00");
FHIRResponse response = client.search(ExplanationOfBenefit.class.getSimpleName(), parameters);
assertSearchResponse(response, Response.Status.OK.getStatusCode());
Expand All @@ -457,6 +458,7 @@ public void testComplicatedInclude() throws Exception {
*/
FHIRParameters parameters = new FHIRParameters();
parameters.searchParam("patient", "Patient/Patient1");
parameters.queryParam("_count", "100");
parameters.searchParam("_lastUpdated", "ge2020");
parameters.searchParam("_include", "ExplanationOfBenefit:patient");
parameters.searchParam("_include", "ExplanationOfBenefit:provider");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,7 @@ public void testCARINBlueButton_Coverage_Patient_SearchParameter() throws Except
@Test
public void testCARINBlueButton_ExplanationOfBenefit_Created_SearchParameter() throws Exception {
FHIRParameters parameters = new FHIRParameters();
parameters.queryParam("_count", "100");
parameters.searchParam("created", "2019-11-02T00:00:00+00:00");
FHIRResponse response = client.search(ExplanationOfBenefit.class.getSimpleName(), parameters);
assertSearchResponse(response, Response.Status.OK.getStatusCode());
Expand All @@ -457,6 +458,7 @@ public void testComplicatedInclude() throws Exception {
*/
FHIRParameters parameters = new FHIRParameters();
parameters.searchParam("patient", "Patient/Patient1");
parameters.queryParam("_count", "100");
parameters.searchParam("_lastUpdated", "ge2020");
parameters.searchParam("_include", "ExplanationOfBenefit:patient");
parameters.searchParam("_include", "ExplanationOfBenefit:provider");
Expand Down

0 comments on commit 5bae423

Please sign in to comment.