Merge pull request #1336 from esdrubal/datatablereadxmlschema
[mono.git] / mcs / nunit24 / NUnitFramework / framework / TearDownAttribute.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 called \r
13         /// immediately after each test is run. The method is \r
14         /// guaranteed to be called, even if an exception is thrown.\r
15         /// </summary>\r
16         [AttributeUsage(AttributeTargets.Method, AllowMultiple=false)]\r
17         public class TearDownAttribute : Attribute\r
18         {}\r
19 }\r