void _td_ProfileDefinitionCompleted(IProfileDefinition profile, ProfileStatus status, string dump)
        {
            ProfileTestInfo info = new ProfileTestInfo();

            info.Status = status;
            info.Log    = dump;
            _profilesSupportInfo.Add(profile, info);
        }
Exemple #2
0
        void _td_ProfileDefinitionCompleted(IProfileDefinition profile, ProfileStatus status, string dump)
        {
            ProfileTestInfo info = new ProfileTestInfo();

            info.Status = status;
            info.Log    = dump;
            if (_profilesSupportInfo.ContainsKey(profile))
            {
                _profilesSupportInfo[profile] = info;
            }
            else
            {
                _profilesSupportInfo.Add(profile, info);
            }
        }
Exemple #3
0
 void tvProfiles_ProfileSelected(IProfileDefinition profile)
 {
     if (!Controller.Running)
     {
         if (profile != null)
         {
             ProfileTestInfo info = _controller.GetProfileInformation(profile);
             if (info != null)
             {
                 tcTestResults.DisplayProfileTestLog(info.Log);
             }
         }
         tvTestCases.SetInactive();
         featuresTree.SetInactive();
     }
 }