Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/guiunit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/framework/Attributes/TestFixtureSetUpAttribute.cs')
-rwxr-xr-xsrc/framework/Attributes/TestFixtureSetUpAttribute.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/framework/Attributes/TestFixtureSetUpAttribute.cs b/src/framework/Attributes/TestFixtureSetUpAttribute.cs
index 57116a6..106ff14 100755
--- a/src/framework/Attributes/TestFixtureSetUpAttribute.cs
+++ b/src/framework/Attributes/TestFixtureSetUpAttribute.cs
@@ -33,4 +33,14 @@ namespace NUnit.Framework
public class TestFixtureSetUpAttribute : NUnitAttribute
{
}
+
+ /// <summary>
+ /// Attribute used to mark a class that contains one-time SetUp
+ /// and/or TearDown methods that apply to all the tests in a
+ /// namespace or an assembly.
+ /// </summary>
+ [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
+ public class SetUpFixtureAttribute : Attribute
+ {
+ }
}