1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00
Sonarr/NzbDrone.Core.Test/Framework/TestBase.cs

27 lines
470 B
C#
Raw Normal View History

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