FastRng/FastRngTests/TestCategories.cs

11 lines
327 B
C#
Raw Normal View History

2020-09-24 18:20:56 +00:00
namespace FastRngTests
{
public class TestCategories
{
public const string COVER = "cover";
public const string PERFORMANCE = "performance";
public const string NORMAL = "normal";
public const string EXAMPLE = "example";
public const string LONG_RUNNING = "long running";
}
}