14 lines
366 B
C#
14 lines
366 B
C#
|
|
namespace Umbraco.Cms.Tests.Common;
|
||
|
|
|
||
|
|
public static class TestConstants
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Used for TestCategories, they are designed to be used in an exclusion filter pattern
|
||
|
|
/// </summary>
|
||
|
|
public static class Categories
|
||
|
|
{
|
||
|
|
public const string LongRunning = "LongRunning";
|
||
|
|
public const string NonCritical = "NonCritical";
|
||
|
|
}
|
||
|
|
}
|