Interface ICommandWrapper
ICommandWrapper is implemented by attributes and other objects able to wrap a TestCommand with another command.
Namespace: NUnit.Framework.Interfaces
Assembly: nunit.framework.dll
Syntax
public interface ICommandWrapper
Remarks
Attributes or other objects should implement one of the derived interfaces, rather than this one, since they indicate in which part of the command chain the wrapper should be applied.
Methods
View SourceWrap(TestCommand)
Wrap a command and return the result.
Declaration
TestCommand Wrap(TestCommand command)
Parameters
Type | Name | Description |
---|---|---|
TestCommand | command | The command to be wrapped |
Returns
Type | Description |
---|---|
TestCommand | The wrapped command |