Table of Contents

Interface ICommandDecorator

Namespace
NUnit.Framework.Interfaces
Assembly
nunit.framework.dll

ICommandDecorator is implemented by attributes and other objects able to decorate a TestCommand, usually by wrapping it with an outer command.

public interface ICommandDecorator

Methods

Decorate(TestCommand)

Decorate a command, usually by wrapping it with another command, and return the decorated command.

TestCommand Decorate(TestCommand command)

Parameters

command TestCommand

The command to be decorated

Returns

TestCommand

The decorated command