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

DelegatingTestCommand

public abstract class DelegatingTestCommand : TestCommand
DelegatingTestCommand wraps an inner TestCommand. Derived classes may do what they like before or after running the inner command.
namespace NUnit.Framework.Internal.Commands { public abstract class DelegatingTestCommand : TestCommand { protected TestCommand innerCommand; protected DelegatingTestCommand(TestCommand innerCommand) : base(innerCommand.Test) { this.innerCommand = innerCommand; } } }