1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 19:12:38 +01:00
Radarr/NzbDrone.Core.Test/Framework/TestBase.cs

25 lines
395 B
C#
Raw Normal View History

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