use MOONLIGHT symbol
[mcs.git] / nunit24 / NUnitFramework / framework / TearDownAttribute.cs
bloba08f49172c72572788a5c71c79687c126a0347b1
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/?p=license&r=2.4.
5 // ****************************************************************
7 namespace NUnit.Framework
9 using System;
11 /// <summary>
12 /// Attribute used to identify a method that is called
13 /// immediately after each test is run. The method is
14 /// guaranteed to be called, even if an exception is thrown.
15 /// </summary>
16 [AttributeUsage(AttributeTargets.Method, AllowMultiple=false)]
17 public class TearDownAttribute : Attribute