NUnit.Framework.Internal.Commands.AfterTestCommand
AfterCommand is a DelegatingTestCommand that performs some
specific action after the inner command is run.
namespace NUnit.Framework.Internal.Commands
{
public abstract class AfterTestCommand : DelegatingTestCommand
{
protected Action<TestExecutionContext> AfterTest;
public AfterTestCommand(TestCommand innerCommand);
}
}