mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
23 lines
570 B
C#
23 lines
570 B
C#
|
using System.Linq;
|
||
|
using NUnit.Framework;
|
||
|
using NzbDrone.Common;
|
||
|
using NzbDrone.Core.MediaCover;
|
||
|
using NzbDrone.Core.Test.Framework;
|
||
|
using NzbDrone.Core.Tv;
|
||
|
using NzbDrone.Core.Tv.Events;
|
||
|
|
||
|
namespace NzbDrone.Core.Test.MediaCoverTests
|
||
|
{
|
||
|
[TestFixture]
|
||
|
public class MediaCoverServiceFixture : CoreTest<MediaCoverService>
|
||
|
{
|
||
|
[SetUp]
|
||
|
public void Setup()
|
||
|
{
|
||
|
Mocker.SetConstant(new HttpProvider());
|
||
|
Mocker.SetConstant(new DiskProvider());
|
||
|
Mocker.SetConstant(new EnvironmentProvider());
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|