Microsoft.Protocols.TestSuites.Common.Common.GetSutVersion C# (CSharp) 메소드

GetSutVersion() 공개 정적인 메소드

Get SUT version.
public static GetSutVersion ( ITestSite site ) : SutVersion
site ITestSite An instance of interface ITestSite which provides logging, assertions, and adapters for test code onto its execution context.
리턴 SutVersion
        public static SutVersion GetSutVersion(ITestSite site)
        {
            string configuredSutVersion = GetConfigurationPropertyValue("SutVersion", site);
            SutVersion sutVersion = (SutVersion)Enum.Parse(typeof(SutVersion), configuredSutVersion, true);
            return sutVersion;
        }
Common