Esempio n. 1
0
 void GetOwnerSolutionItem(UnitTest t, out IConfigurationTarget c, out string path)
 {
     if (OwnerSolutionItem is SolutionItem)
     {
         c    = OwnerSolutionItem as SolutionItem;
         path = "";
     }
     else if (parent != null)
     {
         parent.GetOwnerSolutionItem(t, out c, out path);
         if (c == null)
         {
             return;
         }
         if (path.Length > 0)
         {
             path += "/" + t.Name;
         }
         else
         {
             path = t.Name;
         }
     }
     else
     {
         c    = null;
         path = null;
     }
 }