New test.
[mono.git] / mcs / nunit20 / framework / ExplicitAttribute.cs
1 using System;
2
3 namespace NUnit.Framework
4 {
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
13         {
14                 /// <summary>
15                 /// Constructor
16                 /// </summary>
17                 public ExplicitAttribute()
18                 {
19                 }
20         }
21 }