forked from allure-framework/allure-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAllureConstants.cs
20 lines (17 loc) · 886 Bytes
/
AllureConstants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Allure.Net.Commons
{
public sealed class AllureConstants
{
public const string ALLURE_CONFIG_ENV_VARIABLE = "ALLURE_CONFIG";
public const string CONFIG_FILENAME = "allureConfig.json";
public const string DEFAULT_RESULTS_FOLDER = "allure-results";
public const string TEST_RESULT_FILE_SUFFIX = "-result.json";
public const string TEST_RESULT_CONTAINER_FILE_SUFFIX = "-container.json";
public static string TEST_RUN_FILE_SUFFIX = "-testrun.json";
public const string ATTACHMENT_FILE_SUFFIX = "-attachment";
public const string OLD_ALLURE_ID_LABEL_NAME = "AS_ID";
public const string NEW_ALLURE_ID_LABEL_NAME = "ALLURE_ID";
public const string OLD_ALLURE_TESTPLAN_ENV_NAME = "AS_TESTPLAN_PATH";
public const string NEW_ALLURE_TESTPLAN_ENV_NAME = "ALLURE_TESTPLAN_PATH";
}
}