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 );
        }