mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-17 05:35:07 +00:00
Additional tests
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user