Exemple #1
0
        public void SetSourceContext(string accountName, string accountKey, string containerName)
        {
            var testFilesBlob = new AzureBlob(accountName, accountKey, containerName);

            _testDataProvider = new TestDataProvider(testFilesBlob);
        }
 public TestDataProvider(AzureBlob azureBlob)
 {
     _azureBlob = azureBlob;
 }
Exemple #3
0
 public void SetManifestContext(string accountName, string accountKey, string containerName)
 {
     _blobContainingManifestFiles = new AzureBlob(accountName, accountKey, containerName);
 }