mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
d640fa65e8
System/Jobs now shows items currently in queue.
27 lines
470 B
C#
27 lines
470 B
C#
using NUnit.Framework;
|
|
using NzbDrone.Core.Providers.Jobs;
|
|
|
|
namespace NzbDrone.Core.Test.Framework
|
|
{
|
|
public class TestBase
|
|
// ReSharper disable InconsistentNaming
|
|
{
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
ExceptionVerification.Reset();
|
|
|
|
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
JobProvider.Queue.Clear();
|
|
ExceptionVerification.AssertNoUnexcpectedLogs();
|
|
}
|
|
|
|
}
|
|
}
|