APM.Tests.PluginManagerTests.GetSDKVersion C# (CSharp) 메소드

GetSDKVersion() 개인적인 메소드

private GetSDKVersion ( ) : void
리턴 void
        public void GetSDKVersion()
        {
            var path = Extensions.GetSDKPath();
            Assert.IsNotNullOrEmpty(path);

            path = Extensions.GetSDKPath("1.6");
            Assert.IsNotNullOrEmpty(path);

            path = Extensions.GetSDKPath("v1.7");
            Assert.IsNotNullOrEmpty(path);

            path = Extensions.GetSDKPath("V1.7");
            Assert.IsNotNullOrEmpty(path);
        }