NUnit.Framework.OrderAttribute
Defines the order that the test will run in
namespace NUnit.Framework
{
public class OrderAttribute : NUnitAttribute, IApplyToTest, IApplyToTestSuite
{
public readonly int Order;
public OrderAttribute(int order);
public void ApplyToTest(Test test);
public void ApplyToTestSuite(TestSuite testSuite);
}
}