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

HasTestProgramSet() 공개 정적인 메소드

public static HasTestProgramSet ( string testSetName ) : bool
testSetName string
리턴 bool
        public static bool HasTestProgramSet( string testSetName )
        {
            string testSetPath = GetTestSetPath();
            testSetName = CleanTestSetName( testSetName );
            String rootPathName = Path.Combine( testSetPath, testSetName );
            return Directory.Exists( rootPathName );
        }