Browse Source

exclude coverage from corefx type

Oren Novotny 9 years ago
parent
commit
1003c9a46a
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Ix.NET/Source/System.Interactive.Async/Set.cs

+ 2 - 0
Ix.NET/Source/System.Interactive.Async/Set.cs

@@ -5,12 +5,14 @@
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
+using System.Diagnostics.CodeAnalysis;
 using System.Linq;
 using System.Threading.Tasks;
 
 // from https://github.com/dotnet/corefx/blob/ec2685715b01d12f16b08d0dfa326649b12db8ec/src/System.Linq/src/System/Linq/Set.cs
 namespace System.Linq
 {
+    [ExcludeFromCodeCoverage]
     internal sealed class Set<TElement>
     {
         private readonly IEqualityComparer<TElement> _comparer;