mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 15:21:45 +01:00
19 lines
374 B
C#
19 lines
374 B
C#
|
using log4net;
|
|||
|
using log4net.Config;
|
|||
|
using NUnit.Framework;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace NFC_Test
|
|||
|
{
|
|||
|
[SetUpFixture]
|
|||
|
public class NamespaceSetUp
|
|||
|
{
|
|||
|
private static readonly ILog log = LogManager.GetLogger(typeof(NamespaceSetUp));
|
|||
|
[OneTimeSetUp]
|
|||
|
public void OneTimeSetUp()
|
|||
|
{
|
|||
|
BasicConfigurator.Configure();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|