/src/NUnit/core/TestCaseBuilderAttribute.cs

# · C# · 18 lines · 7 code · 2 blank · 9 comment · 0 complexity · 836789cb78f1ad6e476e3d912007c757 MD5 · raw file

  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.
  5. // ****************************************************************
  6. using System;
  7. namespace NUnit.Core
  8. {
  9. /// <summary>
  10. /// TestBuilderAttribute is used to mark custom test case builders.
  11. /// The class so marked must implement the ITestCaseBuilder interface.
  12. /// </summary>
  13. [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)]
  14. public sealed class TestCaseBuilderAttribute : System.Attribute
  15. {}
  16. }