Moved Jobs to their own folder.

This commit is contained in:
kay.one 2011-12-01 17:33:17 -08:00
commit fabc4c84bd
52 changed files with 124 additions and 132 deletions

View file

@ -1,7 +1,5 @@
using System;
using System.IO;
using NUnit.Framework;
using Ninject;
using NzbDrone.Common;
using NzbDrone.Core.Model.Notification;
using NzbDrone.Test.Common;
@ -10,7 +8,6 @@ using PetaPoco;
namespace NzbDrone.Core.Test.Framework
{
public class CoreTest : TestBase
// ReSharper disable InconsistentNaming
{
static CoreTest()
{
@ -46,17 +43,16 @@ namespace NzbDrone.Core.Test.Framework
return _db;
}
private set { _db = value; }
}
protected void WithRealDb()
{
Db = TestDbHelper.GetEmptyDatabase();
_db = TestDbHelper.GetEmptyDatabase();
Mocker.SetConstant(Db);
}
protected ProgressNotification MockNotification
protected static ProgressNotification MockNotification
{
get
{