<PackageReference Include="NUnit" Version="4.4.0" />

IWorkItemDispatcher

public interface IWorkItemDispatcher
An IWorkItemDispatcher handles execution of work items.
using System.Runtime.CompilerServices; namespace NUnit.Framework.Internal.Execution { [System.Runtime.CompilerServices.NullableContext(1)] public interface IWorkItemDispatcher { int LevelOfParallelism { get; } void Start(WorkItem topLevelWorkItem); void Dispatch(WorkItem work); void CancelRun(bool force); } }