Skip to content

Commit

Permalink
Migrated to NUnit 4
Browse files Browse the repository at this point in the history
  • Loading branch information
grzesiek-galezowski committed Dec 12, 2023
1 parent 62e1021 commit d9c04b0
Show file tree
Hide file tree
Showing 16 changed files with 305 additions and 378 deletions.
10 changes: 0 additions & 10 deletions src/netstandard2.0/AnyGenerators/Root/InlineGenerators.cs
Original file line number Diff line number Diff line change
Expand Up @@ -469,16 +469,6 @@ public static InlineGenerator<Action<T1, T2, T3, T4, T5, T6>> Action<T1, T2, T3,
return InternalInlineGenerators.Action<T1, T2, T3, T4, T5, T6>();
}

public static InlineGenerator<Task> NotStartedTask()
{
return InternalInlineGenerators.NotStartedTask();
}

public static InlineGenerator<Task<T>> NotStartedTask<T>()
{
return InternalInlineGenerators.NotStartedTask<T>();
}

public static InlineGenerator<Task<T>> StartedTask<T>()
{
return InternalInlineGenerators.StartedTask<T>();
Expand Down
10 changes: 0 additions & 10 deletions src/netstandard2.0/AnyRoot/Invokable/AnyInvokableExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,6 @@ public static CancellationToken CancellationToken(this BasicGenerator gen)
return gen.Instance<CancellationToken>();
}

public static Task NotStartedTask(this BasicGenerator gen)
{
return gen.InstanceOf(InlineGenerators.NotStartedTask());
}

public static Task<T> NotStartedTask<T>(this BasicGenerator gen)
{
return gen.InstanceOf(InlineGenerators.NotStartedTask<T>());
}

public static Task<T> StartedTask<T>(this BasicGenerator gen)
{
return gen.InstanceOf(InlineGenerators.StartedTask<T>());
Expand Down
Loading

0 comments on commit d9c04b0

Please sign in to comment.