Added NUnit

This commit is contained in:
kay.one
2011-06-01 21:50:10 -07:00
parent 72f8a7eab1
commit 702399318b
68 changed files with 25317 additions and 1 deletions
@@ -0,0 +1,23 @@
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();
}
}
}