parent
27164d422c
commit
899e5a9a22
@ -0,0 +1,27 @@
|
||||
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
|
||||
{ }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue