From bc8d4ffe45bf7d5c633ae8f87be923deb364c134 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Thu, 24 Sep 2020 20:20:56 +0200 Subject: [PATCH] Defined test categories --- FastRngTests/TestCategories.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 FastRngTests/TestCategories.cs diff --git a/FastRngTests/TestCategories.cs b/FastRngTests/TestCategories.cs new file mode 100644 index 0000000..d23fb4b --- /dev/null +++ b/FastRngTests/TestCategories.cs @@ -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"; + } +} \ No newline at end of file