2009-11-24 Jb Evain <jbevain@novell.com>
[mcs.git] / nunit24 / NUnitCore / core / TestCaseBuilderAttribute.cs
blob55009dc0cfb1a8c2a04e9fb48f57e3ccf3edeb74
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 using System;
9 namespace NUnit.Core
11 /// <summary>
12 /// TestBuilderAttribute is used to mark custom test case builders.
13 /// The class so marked must implement the ITestCaseBuilder interface.
14 /// </summary>
15 [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)]
16 public sealed class TestCaseBuilderAttribute : System.Attribute