1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

27 lines
470 B
C#
Raw Normal View History

2011-06-17 19:00:44 -07:00
using NUnit.Framework;
using NzbDrone.Core.Providers.Jobs;
namespace NzbDrone.Core.Test.Framework
{
public class TestBase
2011-05-22 09:53:21 -07:00
// ReSharper disable InconsistentNaming
{
[SetUp]
public void Setup()
{
ExceptionVerification.Reset();
2011-07-07 22:41:08 -07:00
}
[TearDown]
public void TearDown()
{
JobProvider.Queue.Clear();
2011-06-02 14:06:46 -07:00
ExceptionVerification.AssertNoUnexcpectedLogs();
}
}
}