Defined test categories

This commit is contained in:
Thorsten Sommer 2020-09-24 20:20:56 +02:00
parent 2cba0220b1
commit bc8d4ffe45

View File

@ -0,0 +1,11 @@
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";
}
}