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

23 lines
414 B
C#
Raw Normal View History

using MbUnit.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();
}
[TearDown]
public void TearDown()
{
if (!Assert.IsFailurePending) ExceptionVerification.AssertNoError();
}
}
}