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 16:53:21 +00:00
// ReSharper disable InconsistentNaming
{
[SetUp]
public void Setup()
{
ExceptionVerification.Reset();
}
[TearDown]
public void TearDown()
{
if (!Assert.IsFailurePending) ExceptionVerification.AssertNoError();
}
}
}