EnVisageOnline/Main-RMO/Source/IntegrationTests/Constants.cs

25 lines
1.1 KiB
C#

using System;
namespace IntegrationTests
{
public class Constants
{
#region Testing data
public class TestData
{
public static readonly Guid TemplateIdLargeFsaCr = new Guid("46ADB971-98CB-4D3C-9BA8-84FE2FEF4E8F");
public static readonly Guid TemplateIdNewWeb = new Guid("D191DC30-9DA6-4912-B705-E4B0C594E052");
}
#endregion
public const string ERROR_TEMPLATE_REQUIRED = "The {0} field is required.";
public const string ERROR_GENERAL_MESSAGE_TEMPLATE = "An error occurred while processing your request. Please, try again later.";
public const string ERROR_GENERAL_TITLE_TEMPLATE = "Oops!";
public const string ERROR_RANGE_MAX_VALUE_TEMPLATE = "The {0} field value cannot be greater than {1}";
public const string ERROR_ONE_OR_MORE_SELECTED_ELEMENTS_REQUIRED = "One or more {0} should be selected";
public const short MAX_INNER_EXCEPTION_LOG_LEVEL = 5;
public static readonly DateTime ProjectionsDefaultDate = new DateTime(1900, 1, 1);
}
}