/src/NUnit/framework/Attributes/TestFixtureSetUpAttribute.cs
C# | 19 lines | 8 code | 2 blank | 9 comment | 0 complexity | 9fb2ec3a5faa0d3fff250769aca52c85 MD5 | raw file
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. 5// **************************************************************** 6 7namespace NUnit.Framework 8{ 9 using System; 10 11 /// <summary> 12 /// Attribute used to identify a method that is 13 /// called before any tests in a fixture are run. 14 /// </summary> 15 [AttributeUsage(AttributeTargets.Method, AllowMultiple=false, Inherited=true)] 16 public class TestFixtureSetUpAttribute : Attribute 17 { 18 } 19}