當前位置: 首頁>>代碼示例>>C#>>正文


C# ScenarioTest.EnvironmentSetupHelper類代碼示例

本文整理匯總了C#中Microsoft.WindowsAzure.Commands.ScenarioTest.EnvironmentSetupHelper的典型用法代碼示例。如果您正苦於以下問題:C# EnvironmentSetupHelper類的具體用法?C# EnvironmentSetupHelper怎麽用?C# EnvironmentSetupHelper使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


EnvironmentSetupHelper類屬於Microsoft.WindowsAzure.Commands.ScenarioTest命名空間,在下文中一共展示了EnvironmentSetupHelper類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: SiteRecoveryTestsBase

        protected SiteRecoveryTestsBase()
        {
            this.vaultSettingsFilePath = "ScenarioTests\\vaultSettings.VaultCredentials";

            if (File.Exists(this.vaultSettingsFilePath))
            {
                try
                {
                    var serializer1 = new DataContractSerializer(typeof(ASRVaultCreds));
                    using (var s = new FileStream(
                        this.vaultSettingsFilePath,
                        FileMode.Open,
                        FileAccess.Read,
                        FileShare.Read))
                    {
                        asrVaultCreds = (ASRVaultCreds)serializer1.ReadObject(s);
                    }
                }
                catch (XmlException xmlException)
                {
                    throw new XmlException(
                        "XML is malformed or file is empty", xmlException);
                }
                catch (SerializationException serializationException)
                {
                    throw new SerializationException(
                        "XML is malformed or file is empty", serializationException);
                }
            }
            else
            {
                throw new FileNotFoundException(
                    "Vault settings file not found, please pass the file downloaded from portal");
            }

            helper = new EnvironmentSetupHelper();
        }
開發者ID:BasheerAh,項目名稱:azure-powershell,代碼行數:37,代碼來源:SiteRecoveryTestsBase.cs

示例2: AutomationScenarioTestsBase

 protected AutomationScenarioTestsBase()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:dulems,項目名稱:azure-powershell,代碼行數:4,代碼來源:AutomationScenarioTestsBase.cs

示例3: ProfileController

 public ProfileController()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:rohmano,項目名稱:azure-powershell,代碼行數:4,代碼來源:ProfileController.cs

示例4: NetworkTestsBase

 protected NetworkTestsBase()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:Azure,項目名稱:azure-powershell,代碼行數:4,代碼來源:NetworkTestsBase.cs

示例5: TestController

 protected TestController()
 {
     this.helper = new EnvironmentSetupHelper();
 }
開發者ID:singhkays,項目名稱:azure-powershell,代碼行數:4,代碼來源:TestController.cs

示例6: OperationalInsightsScenarioTestBase

 protected OperationalInsightsScenarioTestBase()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:shuainie,項目名稱:azure-powershell,代碼行數:4,代碼來源:OperationalInsightsScenarioTestBase.cs

示例7: BatchController

 public BatchController()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:singhkays,項目名稱:azure-powershell,代碼行數:4,代碼來源:BatchController.cs

示例8: TestController

 public TestController()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:Azure,項目名稱:azure-powershell,代碼行數:4,代碼來源:TestController.cs

示例9: SchedulerController

 /// <summary>
 /// Initializes new instance of <see cref="Schedulercontroller"/> class.
 /// </summary>
 public SchedulerController()
 {
     this._helper = new EnvironmentSetupHelper();
 }
開發者ID:Azure,項目名稱:azure-powershell,代碼行數:7,代碼來源:SchedulerController.cs

示例10: StreamAnalyticsScenarioTestsBase

 protected StreamAnalyticsScenarioTestsBase()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:Azure,項目名稱:azure-powershell,代碼行數:4,代碼來源:StreamAnalyticsScenarioTestsBase.cs

示例11: ApiManagementTests

 public ApiManagementTests()
 {
     _helper = new EnvironmentSetupHelper();
 }
開發者ID:docschmidt,項目名稱:azure-powershell,代碼行數:4,代碼來源:ApiManagementTests.cs

示例12: RedisCacheController

 public RedisCacheController()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:Azure,項目名稱:azure-powershell,代碼行數:4,代碼來源:RedisCacheController.cs

示例13: UsageAggregatesTestController

 public UsageAggregatesTestController()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:rohmano,項目名稱:azure-powershell,代碼行數:4,代碼來源:UsageAggregatesTestController.cs

示例14: RedisCacheTestsBase

 protected RedisCacheTestsBase()
 {
     helper = new EnvironmentSetupHelper();
 }
開發者ID:injyzarif,項目名稱:azure-powershell,代碼行數:4,代碼來源:RedisCacheTestsBase.cs

示例15: ApiManagementTests

 public ApiManagementTests(Xunit.Abstractions.ITestOutputHelper output)
 {
     _helper = new EnvironmentSetupHelper();
     _helper.TracingInterceptor = new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output);
     ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(_helper.TracingInterceptor);
 }
開發者ID:Azure,項目名稱:azure-powershell,代碼行數:6,代碼來源:ApiManagementTests.cs


注:本文中的Microsoft.WindowsAzure.Commands.ScenarioTest.EnvironmentSetupHelper類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。