diff --git a/src/OSDP.Net.Tests/ControlPanelTest.cs b/src/OSDP.Net.Tests/ControlPanelTest.cs index fb17089..4a241bb 100644 --- a/src/OSDP.Net.Tests/ControlPanelTest.cs +++ b/src/OSDP.Net.Tests/ControlPanelTest.cs @@ -3,7 +3,6 @@ using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Abstractions; using Moq; using NUnit.Framework; diff --git a/src/OSDP.Net.Tests/Global.cs b/src/OSDP.Net.Tests/Global.cs deleted file mode 100644 index 29f4cd1..0000000 --- a/src/OSDP.Net.Tests/Global.cs +++ /dev/null @@ -1,23 +0,0 @@ - -using Microsoft.Extensions.Logging; -using NUnit.Framework; - -namespace OSDP.Net.Tests -{ - [SetUpFixture] - class GlobalSetup - { - public static ILogger CreateLogger() => LoggerFactory.CreateLogger(); - - [OneTimeSetUp] - public void BeforeAnyTests() - { - LoggerFactory.AddLog4Net(); - - // Is next line needed? How does log4net know to write log out to console?? Yet it seems to - //BasicConfigurator.Configure(); - } - - private static readonly LoggerFactory LoggerFactory = new(); - } -} \ No newline at end of file diff --git a/src/OSDP.Net.Tests/IntegrationTests/PeripheryDeviceTest.cs b/src/OSDP.Net.Tests/IntegrationTests/PeripheryDeviceTest.cs index 81526e0..b6d687d 100644 --- a/src/OSDP.Net.Tests/IntegrationTests/PeripheryDeviceTest.cs +++ b/src/OSDP.Net.Tests/IntegrationTests/PeripheryDeviceTest.cs @@ -11,7 +11,6 @@ namespace OSDP.Net.Tests.IntegrationTests; - // // NOTE: Majority of naming/structure in this file is very much a work-in-progress // and will be updated if we continue to build out a set of integration tests