diff --git a/NzbDrone.Core.Test/NotificationTests/Xbmc/HttpApiProviderFixture.cs b/NzbDrone.Core.Test/NotificationTests/Xbmc/HttpApiProviderFixture.cs deleted file mode 100644 index 093b54b46..000000000 --- a/NzbDrone.Core.Test/NotificationTests/Xbmc/HttpApiProviderFixture.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using FluentAssertions; -using Moq; -using NUnit.Framework; -using NzbDrone.Common; -using NzbDrone.Core.Notifications.Xbmc; -using NzbDrone.Core.Test.Framework; - -namespace NzbDrone.Core.Test.NotificationTests.Xbmc -{ - [TestFixture] - public class HttpApiProviderFixture : CoreTest - { - private XbmcSettings _settings; - - [SetUp] - public void Setup() - { - _settings = new XbmcSettings - { - Host = "localhost", - Port = 8080, - Username = "xbmc", - Password = "xbmc", - AlwaysUpdate = false, - CleanLibrary = false, - UpdateLibrary = true - }; - } - } -} diff --git a/NzbDrone.Core.Test/NotificationTests/Xbmc/JsonApiProviderFixture.cs b/NzbDrone.Core.Test/NotificationTests/Xbmc/JsonApiProviderFixture.cs deleted file mode 100644 index 2ec385c2e..000000000 --- a/NzbDrone.Core.Test/NotificationTests/Xbmc/JsonApiProviderFixture.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using FluentAssertions; -using NUnit.Framework; -using NzbDrone.Core.Notifications.Xbmc; -using NzbDrone.Core.Test.Framework; - -namespace NzbDrone.Core.Test.NotificationTests.Xbmc -{ - [TestFixture] - public class JsonApiProviderFixture : CoreTest - { - private XbmcSettings _settings; - - [SetUp] - public void Setup() - { - _settings = new XbmcSettings - { - Host = "localhost", - Port = 8080, - Username = "xbmc", - Password = "xbmc", - AlwaysUpdate = false, - CleanLibrary = false, - UpdateLibrary = true - }; - } - } -} diff --git a/NzbDrone.Core.Test/NotificationTests/Xbmc/XbmcServiceFixture.cs b/NzbDrone.Core.Test/NotificationTests/Xbmc/XbmcServiceFixture.cs deleted file mode 100644 index 52c1b943c..000000000 --- a/NzbDrone.Core.Test/NotificationTests/Xbmc/XbmcServiceFixture.cs +++ /dev/null @@ -1,40 +0,0 @@ - - -using System; -using System.Linq; -using FizzWare.NBuilder; -using FluentAssertions; -using Moq; -using NUnit.Framework; -using NzbDrone.Common; -using NzbDrone.Core.Configuration; -using NzbDrone.Core.Notifications.Xbmc; -using NzbDrone.Core.Tv; -using NzbDrone.Core.Model.Xbmc; -using NzbDrone.Core.Providers; -using NzbDrone.Core.Test.Framework; -using NzbDrone.Test.Common.AutoMoq; - -namespace NzbDrone.Core.Test.NotificationTests.Xbmc -{ - [TestFixture] - public class XbmcProviderTest : CoreTest - { - private XbmcSettings _settings; - - [SetUp] - public void Setup() - { - _settings = new XbmcSettings - { - Host = "localhost", - Port = 8080, - Username = "xbmc", - Password = "xbmc", - AlwaysUpdate = false, - CleanLibrary = false, - UpdateLibrary = true - }; - } - } -} \ No newline at end of file