1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 18:42:42 +01:00
Radarr/NzbDrone.Core.Test/Framework/TestBase.cs
2011-06-17 19:00:44 -07:00

23 lines
393 B
C#

using NUnit.Framework;
namespace NzbDrone.Core.Test.Framework
{
public class TestBase
// ReSharper disable InconsistentNaming
{
[SetUp]
public void Setup()
{
ExceptionVerification.Reset();
}
[TearDown]
public void TearDown()
{
ExceptionVerification.AssertNoUnexcpectedLogs();
}
}
}