using System;
namespace NUnit.Framework
{
///
/// Summary description for SetCultureAttribute.
///
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method|AttributeTargets.Assembly, AllowMultiple=true)]
public class SetCultureAttribute : PropertyAttribute
{
///
/// Construct given the name of a culture
///
///
public SetCultureAttribute( string culture ) : base( "_SETCULTURE", culture ) { }
}
}