parent
f3308827d0
commit
456169b8d2
@ -0,0 +1,20 @@
|
||||
using System.IO;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace NzbDrone.Integration.Test
|
||||
{
|
||||
[SetUpFixture]
|
||||
public class IntegrationTestSetup
|
||||
{
|
||||
[OneTimeSetUp]
|
||||
[OneTimeTearDown]
|
||||
public void CleanUp()
|
||||
{
|
||||
var dir = Path.Combine(TestContext.CurrentContext.TestDirectory, "CachedAppData");
|
||||
if (Directory.Exists(dir))
|
||||
{
|
||||
Directory.Delete(dir, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue