Browse Source

Removing AssertEx.Throws.

Bart De Smet 8 years ago
parent
commit
90b3437e56
1 changed files with 0 additions and 6 deletions
  1. 0 6
      Ix.NET/Source/System.Interactive.Async.Tests/AssertEx.cs

+ 0 - 6
Ix.NET/Source/System.Interactive.Async.Tests/AssertEx.cs

@@ -9,12 +9,6 @@ namespace Tests
 {
     internal class AssertEx
     {
-        internal static void Throws<T>(Action action)
-            where T : Exception
-        {
-            Throws<T>(action, _ => true);
-        }
-
         internal static void Throws<T>(Action action, Func<T, bool> assert)
             where T : Exception
         {