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