mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
17 lines
426 B
C#
17 lines
426 B
C#
using ICD.Common.Utils.Services.Logging;
|
|
using NUnit.Framework;
|
|
|
|
namespace ICD.Common.Utils.Tests.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);
|
|
}
|
|
}
|
|
}
|