DelegatingTestCommand
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;
}
}
}