06794aa8b128d0533ecc6aedff760cf286f00f61
[mono.git] / mcs / nunit24 / NUnitFramework / framework / TestFixtureAttribute.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 namespace NUnit.Framework\r
8 {\r
9         using System;\r
10 \r
11         /// <example>\r
12         /// [TestFixture]\r
13         /// public class ExampleClass \r
14         /// {}\r
15         /// </example>\r
16         [AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]\r
17         public class TestFixtureAttribute : Attribute\r
18         {\r
19                 private string description;\r
20 \r
21                 /// <summary>\r
22                 /// Descriptive text for this fixture\r
23                 /// </summary>\r
24                 public string Description\r
25                 {\r
26                         get { return description; }\r
27                         set { description = value; }\r
28                 }\r
29         }\r
30 }\r