Merge pull request #1336 from esdrubal/datatablereadxmlschema
[mono.git] / mcs / nunit24 / NUnitFramework / framework / TestFixtureSetUpAttribute.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 identify a method that is \r
13         /// called before any tests in a fixture are run.\r
14         /// </summary>\r
15         [AttributeUsage(AttributeTargets.Method, AllowMultiple=false)]\r
16         public class TestFixtureSetUpAttribute : Attribute\r
17         {\r
18         }\r
19 }\r