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