1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-27 14:12:40 +01:00
Radarr/NzbDrone.Core.Test/Framework/TestBase.cs
2011-05-22 09:53:21 -07:00

23 lines
414 B
C#

using MbUnit.Framework;
namespace NzbDrone.Core.Test.Framework
{
public class TestBase
// ReSharper disable InconsistentNaming
{
[SetUp]
public void Setup()
{
ExceptionVerification.Reset();
}
[TearDown]
public void TearDown()
{
if (!Assert.IsFailurePending) ExceptionVerification.AssertNoError();
}
}
}