NUnit.Framework.DependsOnTestAttribute
Specifies that a test must run after another test.
namespace NUnit.Framework
{
public sealed class DependsOnTestAttribute : NUnitAttribute, IApplyToTest
{
public bool AllowFailure { get; set; }
public string DependantTest { get; }
public DependsOnTestAttribute(string testName);
public void ApplyToTest(Test test);
}
}