mirror of https://github.com/lidarr/Lidarr
33 lines
632 B
C#
33 lines
632 B
C#
using System;
|
|
using System.IO;
|
|
using MbUnit.Framework;
|
|
|
|
namespace NzbDrone.Core.Test
|
|
{
|
|
[AssemblyFixture]
|
|
public class Fixtures
|
|
{
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
var dbFiles = Directory.GetFiles(Directory.GetCurrentDirectory(), "*.testdb");
|
|
|
|
foreach (var dbFile in dbFiles)
|
|
{
|
|
try
|
|
{
|
|
File.Delete(dbFile);
|
|
}
|
|
catch
|
|
{ }
|
|
|
|
}
|
|
}
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
CentralDispatch.ConfigureNlog();
|
|
}
|
|
}
|
|
} |