Skip to content

Commit

Permalink
Update the not-yet-implemented message
Browse files Browse the repository at this point in the history
  • Loading branch information
gstark committed Jan 12, 2021
1 parent 194230b commit 285f383
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IterationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static void Failed(string method, string message = "")

public static void NotImplemented(string method)
{
ColoredConsole.WriteLine($"SKIPPED! {method.PadRight(32)} Remove/comment the throw new System.NotImplementedException().".Yellow());
ColoredConsole.WriteLine($"SKIPPED! {method.PadRight(32)} Remove/comment the throw new System.NotImplementedException(). Replace that line with your own code.".Yellow());
}

public static void CompareLists<T>(IEnumerable<T> expected, IEnumerable<T> actual, string method)
Expand Down Expand Up @@ -288,4 +288,4 @@ public static void SomeoneToLove()
}
}
}
}
}

0 comments on commit 285f383

Please sign in to comment.