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

49 lines
1.2 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;
using NzbDrone.Core.Test.Framework;
2010-09-30 09:59:00 +03:00
[SetUpFixture]
public class Fixtures
2010-09-30 09:59:00 +03:00
{
[TearDown]
public void TearDown()
2010-09-30 09:59:00 +03:00
{
}
[SetUp]
public void SetUp()
{
try
2010-09-30 09:59:00 +03:00
{
LogManager.Configuration = new XmlLoggingConfiguration(Path.Combine(CentralDispatch.AppPath, "log.config"), false);
LogManager.ThrowExceptions = true;
2011-07-08 08:41:08 +03:00
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-09-30 09:59:00 +03:00
}
2010-10-02 22:01:43 +03:00
var filesToDelete = Directory.GetFiles(Directory.GetCurrentDirectory(), "*.sdf", SearchOption.AllDirectories);
foreach (var file in filesToDelete)
2010-10-02 22:01:43 +03:00
{
try
{
File.Delete(file);
}
catch { }
2010-10-02 22:01:43 +03:00
}
MockLib.CreateDataBaseTemplate();
2010-09-30 09:59:00 +03:00
}
}