1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-21 11:02:01 +02:00

23 lines
393 B
C#
Raw Normal View History

2011-06-17 19:00:44 -07:00
using NUnit.Framework;
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();
}
[TearDown]
public void TearDown()
{
2011-06-02 14:06:46 -07:00
ExceptionVerification.AssertNoUnexcpectedLogs();
}
}
}