Additional tests

This commit is contained in:
Chris Cameron
2017-07-30 13:50:22 -04:00
parent fc498cbd36
commit 609c245070
4 changed files with 160 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
using ICD.Common.Services.Logging;
using NUnit.Framework;
namespace ICD.Common.Utils.Tests_NetStandard.Services.Logging
{
[TestFixture]
public sealed class LogItemEventArgsTest
{
[Test]
public void DataTest()
{
LogItem item = new LogItem(eSeverity.Critical, "test");
LogItemEventArgs eventArgs = new LogItemEventArgs(item);
Assert.AreEqual(item, eventArgs.Data);
}
}
}