Ejemplo n.º 1
0
 public void Index(TestRunInformation testInformation)
 {
     foreach (var item in testInformation.IterateNodes())
     {
         Index(testInformation.Name, item);
     }
 }
 public void Index(TestRunInformation testInformation)
 {
     foreach(var item in testInformation.IterateNodes())
     {
         Index(testInformation.Name, item);
     }
 }
Ejemplo n.º 3
0
 private void RemoveCounts(TestRunInformation testInformation)
 {
     foreach (var item in testInformation.IterateNodes())
     {
         CountsAndTimes c;
         if (_timesHash.TryGetValue(item.Name.Replace('+', '/'), out c))
         {
             c.RemoveEntry(item);
         }
     }
 }
 private void RemoveCounts(TestRunInformation testInformation)
 {
     foreach (var item in testInformation.IterateNodes())
     {
         CountsAndTimes c;
         if (_timesHash.TryGetValue(item.Name.Replace('+', '/'), out c))
         {
             c.RemoveEntry(item);
         }
     }
 }
        public void Remove(TestRunInformation testInformation)
        {
            if (testInformation == null) return;
            if (testInformation.Name == null) return;
            RemoveCounts(testInformation);

            foreach (var item in testInformation.IterateNodes())
            {
                
                Remove(testInformation.Name.Replace('+', '/'), item.Name.Replace('+', '/'));
            }            
        }
Ejemplo n.º 6
0
        public void Remove(TestRunInformation testInformation)
        {
            if (testInformation == null)
            {
                return;
            }
            if (testInformation.Name == null)
            {
                return;
            }
            RemoveCounts(testInformation);

            foreach (var item in testInformation.IterateNodes())
            {
                Remove(testInformation.Name.Replace('+', '/'), item.Name.Replace('+', '/'));
            }
        }