|
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;
/// <summary>
/// Levels for test messages.
/// </summary>
public enum TestMessageLevel
{
/// <summary>
/// Informational message.
/// </summary>
Informational = 0,
/// <summary>
/// Warning message.
/// </summary>
Warning = 1,
/// <summary>
/// Error message.
/// </summary>
Error = 2
}
|