public StoreTransactionTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
     _recyclableMemoryStreamManager = fixture.RecyclableMemoryStreamManager;
 }
 public ExtendedQueryTagTests(WebJobsIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client          = fixture.GetDicomWebClient();
     _tagManager      = new DicomTagsManager(_client);
     _instanceManager = new DicomInstancesManager(_client);
 }
Esempio n. 3
0
 public AuditTests(AuditTestFixture fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _fixture          = fixture;
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
     _auditLogger      = _fixture.AuditLogger;
 }
Esempio n. 4
0
 public DicomRetrieveMetadataETagTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
 }
Esempio n. 5
0
 public DataPartitionEnabledTests(DataPartitionEnabledHttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
 }
 public QueryTransactionTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
 }