From 736cd90b94d7b906a8e39bec3e3190f3beb0efed Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 12 Jun 2013 00:06:18 -0700 Subject: [PATCH] Removed extra files --- .../Xbmc/HttpApiProviderFixture.cs | 34 ---------------- .../Xbmc/JsonApiProviderFixture.cs | 32 --------------- .../Xbmc/XbmcServiceFixture.cs | 40 ------------------- 3 files changed, 106 deletions(-) delete mode 100644 NzbDrone.Core.Test/NotificationTests/Xbmc/HttpApiProviderFixture.cs delete mode 100644 NzbDrone.Core.Test/NotificationTests/Xbmc/JsonApiProviderFixture.cs delete mode 100644 NzbDrone.Core.Test/NotificationTests/Xbmc/XbmcServiceFixture.cs 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