1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 17:47:08 +00:00

PerformSearchFixture refactoring

This commit is contained in:
kay.one 2011-11-17 20:36:37 -08:00
parent 5522466497
commit 4bd226f7c4

View file

@ -2,6 +2,7 @@
using NUnit.Framework;
using Ninject;
using NzbDrone.Common;
using NzbDrone.Core.Model.Notification;
using NzbDrone.Test.Common;
using PetaPoco;
@ -39,7 +40,7 @@ static CoreTest()
[SetUp]
public virtual void SetupBase()
public virtual void CoreTestSetup()
{
LiveKernel = new StandardKernel();
}
@ -59,5 +60,14 @@ protected void WithRealDb()
Db = MockLib.GetEmptyDatabase();
Mocker.SetConstant(Db);
}
protected ProgressNotification MockNotification
{
get
{
return new ProgressNotification("Mock notification");
}
}
}
}