Ejemplo n.º 1
0
 public void RefreshTestStatusCounts()
 {
     lock (_synclock)
     {
         Passed = Failed = Skipped = Others = 0;
     }
     TestCollection.ForEach(x => UpdateTestStatusCounts(x));
 }
        public void RefreshTestStatusCounts()
        {
            Passed = Failed = Others = 0;

            TestCollection.ForEach(x => updateTestStatusCounts(x));
        }