ATMLProject.model.TestProgramSet.GetTestSetPath C# (CSharp) 메소드

GetTestSetPath() 개인적인 정적인 메소드

private static GetTestSetPath ( ) : string
리턴 string
        private static string GetTestSetPath()
        {
            //-----------------------------//
            //--- Get the Test Set Path ---//
            //-----------------------------//
            String testSetPath = ATMLContext.TESTSET_PATH;
            if (!Directory.Exists( testSetPath ))
                Directory.CreateDirectory( testSetPath );
            return testSetPath;
        }