mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
24 lines
401 B
C#
24 lines
401 B
C#
using NUnit;
|
|
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.Framework
|
|
{
|
|
public class TestBaseNunit
|
|
// ReSharper disable InconsistentNaming
|
|
{
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
ExceptionVerification.Reset();
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
ExceptionVerification.AssertNoError();
|
|
}
|
|
|
|
}
|
|
}
|