mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-14 04:58:33 +00:00
Additional tests
This commit is contained in:
parent
fc498cbd36
commit
609c245070
4 changed files with 160 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue