public AnonymizedExportDataValidationTests(HttpIntegrationTestFixture <StartupForAnonymizedExportTestProvider> fixture)
 {
     _testFhirClient      = fixture.TestFhirClient;
     _exportConfiguration = ((IOptions <ExportJobConfiguration>)(fixture.TestFhirServer as InProcTestFhirServer).Server.Services.GetService(typeof(IOptions <ExportJobConfiguration>))).Value;
 }
Example #2
0
 public VReadXmlTests(HttpIntegrationTestFixture <Startup> fixture)
     : base(fixture)
 {
     Client = fixture.FhirXmlClient.Value;
 }
Example #3
0
 public SchemaTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     _client = fixture.HttpClient;
 }
Example #4
0
 public SmartProxyBadRequestTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     _client = fixture.FhirClient;
 }
 public ExceptionXmlTests(HttpIntegrationTestFixture <StartupWithThrowingMiddleware> fixture)
     : base(fixture)
 {
     Client = fixture.FhirXmlClient.Value;
 }
 public BasicSearchTests(HttpIntegrationTestFixture <Startup> fixture)
     : base(fixture)
 {
     // Delete all patients before starting the test.
     Client.DeleteAllResources(ResourceType.Patient).Wait();
 }
 public AnonymizedExportTests(HttpIntegrationTestFixture <StartupForAnonymizedExportTestProvider> fixture)
 {
     _isUsingInProcTestServer = fixture.IsUsingInProcTestServer;
     _testFhirClient          = fixture.TestFhirClient;
     _exportConfiguration     = ((IOptions <ExportJobConfiguration>)(fixture.TestFhirServer as InProcTestFhirServer)?.Server?.Services?.GetService(typeof(IOptions <ExportJobConfiguration>)))?.Value;
 }
Example #8
0
 public CompartmentTests(HttpIntegrationTestFixture <Startup> fixture)
     : base(fixture)
 {
     _tagValue       = $"CompartmentTests_{Guid.NewGuid().ToString()}";
     _tagQueryString = $"{TagSearchParameterName}={_tagValue}";
 }