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

ICommandWrapper

public interface ICommandWrapper
ICommandWrapper is implemented by attributes and other objects able to wrap a TestCommand with another command.
using NUnit.Framework.Internal.Commands; using System.Runtime.CompilerServices; namespace NUnit.Framework.Interfaces { [System.Runtime.CompilerServices.NullableContext(1)] public interface ICommandWrapper { TestCommand Wrap(TestCommand command); } }