You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-07-11 01:10:36 +02:00
22 lines
370 B
C#
22 lines
370 B
C#
![]() |
using MbUnit.Framework;
|
||
|
|
||
|
namespace NzbDrone.Core.Test.Framework
|
||
|
{
|
||
|
public class TestBase
|
||
|
{
|
||
|
|
||
|
[SetUp]
|
||
|
public void Setup()
|
||
|
{
|
||
|
ExceptionVerification.Reset();
|
||
|
}
|
||
|
|
||
|
[TearDown]
|
||
|
public void TearDown()
|
||
|
{
|
||
|
if (!Assert.IsFailurePending) ExceptionVerification.AssertNoError();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|