1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 21:45:05 +00:00
Lidarr/NzbDrone.Core.Test/NotificationTests/Xbmc/JsonApiProviderFixture.cs
2013-06-11 23:45:41 -07:00

32 lines
790 B
C#

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<JsonApiProvider>
{
private XbmcSettings _settings;
[SetUp]
public void Setup()
{
_settings = new XbmcSettings
{
Host = "localhost",
Port = 8080,
Username = "xbmc",
Password = "xbmc",
AlwaysUpdate = false,
CleanLibrary = false,
UpdateLibrary = true
};
}
}
}