// ----------------------------------------------------------------------- // // TODO: Update copyright text. // // ----------------------------------------------------------------------- namespace Lucene.Net.Extensions.NUnit { using System; using System.Collections.Generic; using System.Linq; using System.Text; /// /// Placeholder for parallelizable tests in NUnit. /// [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)] public class ParallelizableAttribute : System.Attribute { public TestScope Scope { get; set; } public int Order { get; set; } public ParallelizableAttribute() { } public ParallelizableAttribute(TestScope scope) { this.Scope = scope; } } }