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,6 +1,5 @@
using System.Linq;
using System.IO;
using Moq;
using NUnit.Framework;
using NzbDrone.Common;
@ -9,12 +8,11 @@ using NzbDrone.Test.Common.AutoMoq;
namespace NzbDrone.Test.Common
{
public class TestBase : LoggingTest
// ReSharper disable InconsistentNaming
{
protected const string IntegrationTest = "Integration Test";
protected const string INTEGRATION_TEST = "Integration Test";
protected AutoMoqer Mocker;
protected AutoMoqer Mocker { get; private set; }
protected string VirtualPath
{
@ -46,7 +44,7 @@ namespace NzbDrone.Test.Common
}
protected virtual void WithStrictMocker()
protected protected void WithStrictMocker()
{
Mocker = new AutoMoqer(MockBehavior.Strict);
}