Microsoft.Protocols.TestSuites.MS_OXORULE.TestSuiteBase.CheckMAPIHTTPTransportSupported C# (CSharp) Method

CheckMAPIHTTPTransportSupported() protected method

Disable the test case if MAPIHTTP transport is selected but not supported by current test environment.
protected CheckMAPIHTTPTransportSupported ( ) : void
return void
        protected void CheckMAPIHTTPTransportSupported()
        {
            if (Common.GetConfigurationPropertyValue("TransportSeq", this.Site).ToLower(System.Globalization.CultureInfo.CurrentCulture) == "mapi_http" && !Common.IsRequirementEnabled(933, this.Site))
            {
                Site.Assume.Inconclusive("This case can not run with MAPIHTTP transport with current SUT version. MAPIHTTP is supported from Exchange Server 2013 SP1.");
            }
        }