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/?p=license&r=2.4.
5 // ****************************************************************
6 
7 namespace NUnit.Framework
8 {
9 	using System;
10 
11 	/// <example>
12 	/// [TestFixture]
13 	/// public class ExampleClass
14 	/// {}
15 	/// </example>
16 	[AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]
17 	[Obsolete ("The NUnit framework shipped with Mono is deprecated and will be removed in a future release. It was based on NUnit 2.4 which is long outdated. Please move to the NUnit NuGet package or some other form of acquiring NUnit.", true)]
18 	public class TestFixtureAttribute : Attribute
19 	{
20 		private string description;
21 
22 		/// <summary>
23 		/// Descriptive text for this fixture
24 		/// </summary>
25 		public string Description
26 		{
27 			get { return description; }
28 			set { description = value; }
29 		}
30 	}
31 }
32