Merge remote-tracking branch 'local/msvc-updates' into msvc-updates
[mono.git] / mcs / nunit24 / NUnitFramework / framework / SetUpAttribute.cs
1 // ****************************************************************\r
2 // This is free software licensed under the NUnit license. You\r
3 // may obtain a copy of the license as well as information regarding\r
4 // copyright ownership at http://nunit.org/?p=license&r=2.4.\r
5 // ****************************************************************\r
6 \r
7 namespace NUnit.Framework\r
8 {\r
9         using System;\r
10 \r
11         /// <summary>\r
12         /// Attribute used to mark a class that contains one-time SetUp \r
13         /// and/or TearDown methods that apply to all the tests in a\r
14         /// namespace or an assembly.\r
15         /// </summary>\r
16         [AttributeUsage(AttributeTargets.Method, AllowMultiple=false)]\r
17         public class SetUpAttribute : Attribute\r
18         {}\r
19 }\r