2010-03-17 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / nunit24 / NUnitCore / core / SuiteBuilderAttribute.cs
1 // ****************************************************************\r
2 // This is free software licensed under the NUnit license. You\r
3 // may obtain a copy of the license as well as information regarding\r
4 // copyright ownership at http://nunit.org/?p=license&r=2.4.\r
5 // ****************************************************************\r
6 \r
7 using System;\r
8 \r
9 namespace NUnit.Core\r
10 {\r
11         /// <summary>\r
12         /// SuiteBuilderAttribute is used to mark custom suite builders.\r
13         /// The class so marked must implement the ISuiteBuilder interface.\r
14         /// </summary>\r
15         [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)]\r
16         public sealed class SuiteBuilderAttribute : Attribute\r
17         {}\r
18 }\r