1 // ****************************************************************
2 // Copyright 2007, Charlie Poole
3 // This is free software licensed under the NUnit license. You may
4 // obtain a copy of the license at http://nunit.org/?p=license&r=2.4
5 // ****************************************************************
6 
7 using System;
8 
9 namespace NUnit.Framework
10 {
11 	/// <summary>
12 	/// SetUpFixtureAttribute is used to identify a SetUpFixture
13 	/// </summary>
14 	[AttributeUsage(AttributeTargets.Class, AllowMultiple=false)]
15 	public class SetUpFixtureAttribute : Attribute
16 	{
17 	}
18 }
19