コード例 #1
0
 public StoreTransactionTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
     _recyclableMemoryStreamManager = fixture.RecyclableMemoryStreamManager;
 }
コード例 #2
0
 public ExtendedQueryTagTests(WebJobsIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client          = fixture.GetDicomWebClient();
     _tagManager      = new DicomTagsManager(_client);
     _instanceManager = new DicomInstancesManager(_client);
 }
コード例 #3
0
ファイル: AuditTests.cs プロジェクト: microsoft/dicom-server
 public AuditTests(AuditTestFixture fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _fixture          = fixture;
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
     _auditLogger      = _fixture.AuditLogger;
 }
コード例 #4
0
 public DicomRetrieveMetadataETagTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
 }
コード例 #5
0
 public DataPartitionEnabledTests(DataPartitionEnabledHttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
 }
コード例 #6
0
 public QueryTransactionTests(HttpIntegrationTestFixture <Startup> fixture)
 {
     EnsureArg.IsNotNull(fixture, nameof(fixture));
     _client           = fixture.GetDicomWebClient();
     _instancesManager = new DicomInstancesManager(_client);
 }