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