File: Utilities\Severity.cs
Web Access
Project: ..\..\..\test\dotnet-format.UnitTests\dotnet-format.UnitTests.csproj (dotnet-format.UnitTests)
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the MIT license.  See License.txt in the project root for license information.
 
namespace Microsoft.CodeAnalysis.Tools.Tests
{
    internal static class Severity
    {
        public const string Info = "info";
        public const string Warning = "warning";
        public const string Error = "error";
    }
}