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

23 lines
393 B
C#
Raw Normal View History

2011-06-18 05:00:44 +03:00
using NUnit.Framework;
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();
}
[TearDown]
public void TearDown()
{
2011-06-03 00:06:46 +03:00
ExceptionVerification.AssertNoUnexcpectedLogs();
}
}
}