Skip to content

Commit

Permalink
Removed some TODOs that actually aren't a great idea..
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcondon committed May 6, 2024
1 parent 8c676e9 commit fb63de1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/FlUnit/TestActionOutcome.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ namespace FlUnit
/// <summary>
/// Container for the outcome of the invoking the "When" clause of a test.
/// </summary>
// TODO-BREAKING-V2: is this still needed now that When clauses are async by default (so have a ValueTask/Task)?
// ThrowIfEx/NoEx become static methods on TestFailureException? Changes the args of Then(..) - breaking change.
public sealed class TestActionOutcome
{
internal TestActionOutcome() { }
Expand Down
2 changes: 0 additions & 2 deletions src/FlUnit/TestFunctionOutcome.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ namespace FlUnit
/// Container for the outcome of the invoking the "When" clause of a test.
/// </summary>
/// <typeparam name="T">The return type of test function.</typeparam>
// TODO-BREAKING-V2: is this still needed now that When clauses are async by default (so have a ValueTask/Task)?
// ThrowIfEx/NoEx become static methods on TestFailureException? Changes the args of Then(..) - breaking change.
public sealed class TestFunctionOutcome<T>
{
private readonly T result;
Expand Down

0 comments on commit fb63de1

Please sign in to comment.