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