You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
563 B
21 lines
563 B
using System; |
|
|
|
namespace NUnit.Framework |
|
{ |
|
/// <summary> |
|
/// ExplicitAttribute marks a test or test fixture so that it will |
|
/// only be run if explicitly executed from the gui or command line |
|
/// or if it is included by use of a filter. The test will not be |
|
/// run simply because an enclosing suite is run. |
|
/// </summary> |
|
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method, AllowMultiple=false)] |
|
public sealed class ExplicitAttribute : Attribute |
|
{ |
|
/// <summary> |
|
/// Constructor |
|
/// </summary> |
|
public ExplicitAttribute() |
|
{ |
|
} |
|
} |
|
}
|
|
|