This commit is contained in:
Ken Stevens 2019-12-20 15:46:55 -05:00
parent 625f967688
commit 2d0c30f7a2
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package ca.uhn.fhir.jpa.searchparam.matcher;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.context.RuntimeSearchParam;
import ca.uhn.fhir.jpa.model.entity.ModelConfig;
import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamDate;
import ca.uhn.fhir.jpa.searchparam.MatchUrlService;
import ca.uhn.fhir.jpa.searchparam.extractor.ResourceIndexedSearchParams;
@ -67,6 +68,11 @@ public class InMemoryResourceMatcherR5Test {
FhirContext fhirContext() {
return FhirContext.forR5();
}
@Bean
ModelConfig modelConfig() {
return new ModelConfig();
}
}
@Before