mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-13 20:47:24 +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,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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue