ATML1671Allocator.allocator.ATMLAllocator.OnProjectOpened C# (CSharp) Метод

OnProjectOpened() приватный Метод

private OnProjectOpened ( string testProgramSetName ) : void
testProgramSetName string
Результат void
        private void OnProjectOpened( string testProgramSetName )
        {
            string projectPath = Path.Combine( ATMLContext.TESTSET_PATH, testProgramSetName, "atml" );
            string fileName1 = Path.Combine( projectPath,
                                             testProgramSetName + ATMLContext.ATML_TEST_DESC_FILENAME_SUFFIX );
            string fileName2 = Path.Combine( projectPath, testProgramSetName + ATMLContext.ATML_CONFIG_FILENAME_SUFFIX );
            LoadTestDescriptionFile( fileName1 );
            LoadTestConfigurationFile( fileName2 );
        }