PageRenderTime 52ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/src/NUnit/core/SuiteBuilderAttribute.cs

#
C# | 18 lines | 7 code | 2 blank | 9 comment | 0 complexity | a03ad44d7d429013fdacaf9f374f40cc MD5 | raw file
Possible License(s): GPL-2.0
  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. /// SuiteBuilderAttribute is used to mark custom suite builders.
  11. /// The class so marked must implement the ISuiteBuilder interface.
  12. /// </summary>
  13. [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)]
  14. public sealed class SuiteBuilderAttribute : Attribute
  15. {}
  16. }