13 lines
301 B
C#
13 lines
301 B
C#
|
|
using NUnit.Framework;
|
||
|
|
|
||
|
|
namespace Umbraco.Cms.Tests.Common.Attributes;
|
||
|
|
|
||
|
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false)]
|
||
|
|
public class LongRunning : CategoryAttribute
|
||
|
|
{
|
||
|
|
public LongRunning()
|
||
|
|
: base(TestConstants.Categories.LongRunning)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|