Radarr/NzbDrone.Core.Test/Framework/TestBase.cs

24 lines
406 B
C#
Raw Normal View History

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