Files
ICD.Common.Utils/ICD.Common.Utils.Tests/Services/Logging/SeverityEventArgsTest.cs
2017-07-30 13:50:22 -04:00

17 lines
432 B
C#

using ICD.Common.Services.Logging;
using NUnit.Framework;
namespace ICD.Common.Utils.Tests_NetStandard.Services.Logging
{
[TestFixture]
public sealed class SeverityEventArgsTest
{
[TestCase(eSeverity.Critical)]
public void DataTest(eSeverity severity)
{
SeverityEventArgs args = new SeverityEventArgs(severity);
Assert.AreEqual(severity, args.Data);
}
}
}