mirror of
https://github.com/Radarr/Radarr
synced 2026-05-02 02:41:10 +02:00
20 lines
456 B
C#
20 lines
456 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
}
|