NUnit.Framework.Internal.Commands.TestActionCommand
TestActionCommand handles a single ITestAction applied
to a test. It runs the BeforeTest method, then runs the
test and finally runs the AfterTest method.
namespace NUnit.Framework.Internal.Commands
{
public class TestActionCommand : BeforeAndAfterTestCommand
{
public TestActionCommand(TestCommand innerCommand, ITestAction action);
}
}