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 	/// <summary>
12 	/// Attribute used to mark a static (shared in VB) property
13 	/// that returns a list of tests.
14 	/// </summary>
15 	[AttributeUsage(AttributeTargets.Property, AllowMultiple=false)]
16 	public class SuiteAttribute : Attribute
17 	{}
18 }
19