**** Merged from MCS ****
[mono-project.git] / mcs / nunit20 / framework / ExplicitAttribute.cs
blobd96ded73789a83a2fd6132a128e9fdce2e321732
1 using System;
3 namespace NUnit.Framework
5 /// <summary>
6 /// ExplicitAttribute marks a test or test fixture so that it will
7 /// only be run if explicitly executed from the gui or command line
8 /// or if it is included by use of a filter. The test will not be
9 /// run simply because an enclosing suite is run.
10 /// </summary>
11 [AttributeUsage(AttributeTargets.Class|AttributeTargets.Method, AllowMultiple=false)]
12 public sealed class ExplicitAttribute : Attribute
14 /// <summary>
15 /// Constructor
16 /// </summary>
17 public ExplicitAttribute()