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