public TestDataController() { _storageAccount = ControllerUtil.CreateStorageAccount(); _storage = new TestResultStorage(_storageAccount); _stats = new TestCacheStats(_storage, _storageAccount.CreateCloudTableClient()); _statsUtil = ControllerUtil.GetOrCreateCounterStatsUtil(_storageAccount); }
public StatusController() { var storage = ControllerUtil.CreateStorageAccount(); _testResultStorage = new TestResultStorage(storage); _testCacheStats = new TestCacheStats(_testResultStorage, storage.CreateCloudTableClient()); _testRunTable = storage.CreateCloudTableClient().GetTableReference(AzureConstants.TableNames.TestRunData); }
public TestDataController() { _storageAccount = ControllerUtil.CreateStorageAccount(); var dashboardStorage = new DashboardStorage(_storageAccount); _storage = new TestResultStorage(dashboardStorage); _stats = new TestCacheStats(_storage); _statsUtil = new CounterStatsUtil(dashboardStorage); }
public void Configuration(IAppBuilder app) { ConfigureAuth(app); AzureUtil.EnsureAzureResources(ControllerUtil.CreateStorageAccount()); }
public BuildsController() { _storageAccount = ControllerUtil.CreateStorageAccount(); _buildUtil = new BuildUtil(_storageAccount); }
public BuildsApiController() { var storageAccount = ControllerUtil.CreateStorageAccount(); _buildUtil = new BuildUtil(storageAccount); }