blob: 90748c06fdc83bd1be452e67a98acb93ee02a35f [file] [log] [blame]
namespace log4net.Tests
{
using System.IO;
using NUnit.Framework;
[SetUpFixture]
public class NUnitTestRunnerInitializer
{
[OneTimeSetUp]
public void RunBeforeAnyTests()
{
Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory);
}
}
}