IAsyncConstraint
Interface for constraints which support asynchrnious ApplyAsync.
using System;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
namespace NUnit.Framework.Constraints
{
internal interface IAsyncConstraint : IConstraint, IResolveConstraint
{
[NullableContext(1)]
Task<ConstraintResult> ApplyToAsync<[Nullable(2)] TActual>(Func<Task<TActual>> delTask);
}
}