1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core.Test/Framework/Fixtures.cs

47 lines
1.4 KiB
C#
Raw Normal View History

2010-09-30 09:59:00 +03:00
using System;
using System.IO;
using NLog;
using NLog.Config;
2011-06-03 00:06:46 +03:00
using NUnit.Framework;
using NzbDrone.Core.Test.Framework;
2010-09-30 09:59:00 +03:00
namespace NzbDrone.Core.Test
{
2011-06-03 00:06:46 +03:00
[SetUpFixture]
2010-09-30 09:59:00 +03:00
public class Fixtures
{
[TearDown]
public void TearDown()
{
2011-06-23 09:56:17 +03:00
var filesToDelete = Directory.GetFiles(Directory.GetCurrentDirectory(), "*.sdf", SearchOption.AllDirectories);
2011-06-03 00:06:46 +03:00
foreach (var file in filesToDelete)
2010-09-30 09:59:00 +03:00
{
try
{
File.Delete(file);
2010-09-30 09:59:00 +03:00
}
2011-06-03 00:06:46 +03:00
catch{}
2010-09-30 09:59:00 +03:00
}
}
2010-10-02 22:01:43 +03:00
[SetUp]
public void SetUp()
2010-10-02 22:01:43 +03:00
{
try
{
2011-04-10 05:44:01 +03:00
LogManager.Configuration =
new XmlLoggingConfiguration(Path.Combine(CentralDispatch.AppPath, "log.config"), false);
LogManager.ThrowExceptions = true;
var exceptionVerification = new ExceptionVerification();
LogManager.Configuration.AddTarget("ExceptionVerification", exceptionVerification);
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Info, exceptionVerification));
LogManager.Configuration.Reload();
}
catch (Exception e)
{
Console.WriteLine("Unable to configure logging. " + e);
}
2010-10-02 22:01:43 +03:00
}
2010-09-30 09:59:00 +03:00
}
}