BryanWilhite / SonghayCore

core reusable, opinionated concerns for *all* 🧐 of my C# projects
http://songhayblog.azurewebsites.net/
MIT License
1 stars 0 forks source link

add `TestScalars` #165

Closed BryanWilhite closed 8 months ago

BryanWilhite commented 8 months ago

/// <summary>
/// Shared values for this assembly.
/// </summary>
public static class TestScalars
{
    /// <summary>
    /// The xunit category trait
    /// </summary>
    public const string XUNIT_CATEGORY = "Category";

    /// <summary>
    /// The xunit category integration test
    /// </summary>
    public const string XUNIT_CATEGORY_INTEGRATION_TEST = "Integration";

    /// <summary>
    /// The xunit category integration manual test
    /// </summary>
    public const string XUNIT_CATEGORY_INTEGRATION_MANUAL_TEST = "IntegrationManual";
}