mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
Test project cleanup
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
Binary file not shown.
@@ -1,3 +1,4 @@
|
|||||||
|
// ReSharper disable RedundantUsingDirective
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using MbUnit.Framework;
|
using MbUnit.Framework;
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
// ReSharper disable RedundantUsingDirective
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
@@ -1,7 +1,8 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
using AutoMoq;
|
using AutoMoq;
|
||||||
using MbUnit.Framework;
|
using MbUnit.Framework;
|
||||||
using Moq;
|
using Moq;
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test
|
namespace NzbDrone.Core.Test
|
||||||
{
|
{
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Microsoft.Practices.Unity;
|
using Microsoft.Practices.Unity;
|
||||||
using Microsoft.Practices.Unity.ObjectBuilder;
|
using Microsoft.Practices.Unity.ObjectBuilder;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using NLog;
|
using NLog;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
@@ -3,6 +3,7 @@
|
|||||||
namespace NzbDrone.Core.Test.Framework
|
namespace NzbDrone.Core.Test.Framework
|
||||||
{
|
{
|
||||||
public class TestBase
|
public class TestBase
|
||||||
|
// ReSharper disable InconsistentNaming
|
||||||
{
|
{
|
||||||
|
|
||||||
[SetUp]
|
[SetUp]
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using AutoMoq;
|
using AutoMoq;
|
||||||
@@ -26,7 +27,6 @@ namespace NzbDrone.Core.Test
|
|||||||
AirDate = DateTime.Today.AddDays(-1),
|
AirDate = DateTime.Today.AddDays(-1),
|
||||||
EpisodeId = 1234,
|
EpisodeId = 1234,
|
||||||
EpisodeNumber = 5,
|
EpisodeNumber = 5,
|
||||||
Language = "English",
|
|
||||||
Overview = "This is an Overview",
|
Overview = "This is an Overview",
|
||||||
SeasonNumber = 1,
|
SeasonNumber = 1,
|
||||||
SeasonId = 4321,
|
SeasonId = 4321,
|
||||||
@@ -107,7 +107,6 @@ namespace NzbDrone.Core.Test
|
|||||||
AirDate = DateTime.Today.AddDays(-1),
|
AirDate = DateTime.Today.AddDays(-1),
|
||||||
EpisodeId = 1234,
|
EpisodeId = 1234,
|
||||||
EpisodeNumber = 5,
|
EpisodeNumber = 5,
|
||||||
Language = "English",
|
|
||||||
Overview = "This is an Overview",
|
Overview = "This is an Overview",
|
||||||
SeasonNumber = 1,
|
SeasonNumber = 1,
|
||||||
SeasonId = 4321,
|
SeasonId = 4321,
|
||||||
@@ -143,7 +142,6 @@ namespace NzbDrone.Core.Test
|
|||||||
AirDate = DateTime.Today.AddDays(-1),
|
AirDate = DateTime.Today.AddDays(-1),
|
||||||
EpisodeId = 1234,
|
EpisodeId = 1234,
|
||||||
EpisodeNumber = 5,
|
EpisodeNumber = 5,
|
||||||
Language = "English",
|
|
||||||
Overview = "This is an Overview",
|
Overview = "This is an Overview",
|
||||||
SeasonNumber = 1,
|
SeasonNumber = 1,
|
||||||
SeasonId = 4321,
|
SeasonId = 4321,
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
@@ -11,6 +11,7 @@ using NzbDrone.Core.Providers;
|
|||||||
using NzbDrone.Core.Providers.Jobs;
|
using NzbDrone.Core.Providers.Jobs;
|
||||||
using NzbDrone.Core.Repository;
|
using NzbDrone.Core.Repository;
|
||||||
using NzbDrone.Core.Test.Framework;
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test
|
namespace NzbDrone.Core.Test
|
||||||
{
|
{
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using AutoMoq;
|
using AutoMoq;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq.Expressions;
|
using System.Linq.Expressions;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using MbUnit.Framework;
|
using MbUnit.Framework;
|
||||||
using NzbDrone.Core.Repository.Quality;
|
using NzbDrone.Core.Repository.Quality;
|
||||||
using NzbDrone.Core.Test.Framework;
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
// ReSharper disable RedundantUsingDirective
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using FizzWare.NBuilder;
|
using FizzWare.NBuilder;
|
||||||
using MbUnit.Framework;
|
using MbUnit.Framework;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using AutoMoq;
|
using AutoMoq;
|
||||||
using MbUnit.Framework;
|
using MbUnit.Framework;
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using AutoMoq;
|
using AutoMoq;
|
||||||
|
Binary file not shown.
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
// ReSharper disable RedundantUsingDirective
|
||||||
|
using System;
|
||||||
using MbUnit.Framework;
|
using MbUnit.Framework;
|
||||||
using NzbDrone.Core.Providers;
|
using NzbDrone.Core.Providers;
|
||||||
using NzbDrone.Core.Test.Framework;
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
Reference in New Issue
Block a user