1 using System;
2 
3 namespace NUnit.Framework
4 {
5 	/// <summary>
6 	/// Summary description for SetCultureAttribute.
7 	/// </summary>
8 	[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method|AttributeTargets.Assembly, AllowMultiple=true)]
9 	public class SetCultureAttribute : PropertyAttribute
10 	{
11 		/// <summary>
12 		/// Construct given the name of a culture
13 		/// </summary>
14 		/// <param name="culture"></param>
SetCultureAttribute( string culture )15 		public SetCultureAttribute( string culture ) : base( "_SETCULTURE", culture ) { }
16 	}
17 }
18