IApplyToContext
The IApplyToContext interface is implemented by attributes
that want to make changes to the execution context before
a test is run.
using NUnit.Framework.Internal;
namespace NUnit.Framework.Interfaces
{
public interface IApplyToContext
{
void ApplyToContext(TestExecutionContext context);
}
}