/src/NUnit/core/SuiteBuilderAttribute.cs
C# | 18 lines | 7 code | 2 blank | 9 comment | 0 complexity | a03ad44d7d429013fdacaf9f374f40cc MD5 | raw file
1// **************************************************************** 2// This is free software licensed under the NUnit license. You 3// may obtain a copy of the license as well as information regarding 4// copyright ownership at http://nunit.org. 5// **************************************************************** 6 7using System; 8 9namespace NUnit.Core 10{ 11 /// <summary> 12 /// SuiteBuilderAttribute is used to mark custom suite builders. 13 /// The class so marked must implement the ISuiteBuilder interface. 14 /// </summary> 15 [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)] 16 public sealed class SuiteBuilderAttribute : Attribute 17 {} 18}