mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-05 22:42:23 +00:00
35 lines
824 B
C#
35 lines
824 B
C#
|
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<HttpApiProvider>
|
|||
|
{
|
|||
|
private XbmcSettings _settings;
|
|||
|
|
|||
|
[SetUp]
|
|||
|
public void Setup()
|
|||
|
{
|
|||
|
_settings = new XbmcSettings
|
|||
|
{
|
|||
|
Host = "localhost",
|
|||
|
Port = 8080,
|
|||
|
Username = "xbmc",
|
|||
|
Password = "xbmc",
|
|||
|
AlwaysUpdate = false,
|
|||
|
CleanLibrary = false,
|
|||
|
UpdateLibrary = true
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|