mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 14:51:51 +01:00
35 lines
634 B
C#
35 lines
634 B
C#
using log4net.Config;
|
|
using NUnit.Framework;
|
|
|
|
namespace NFC_Test
|
|
{
|
|
/// <summary>
|
|
/// Add log4net Output to Console Out
|
|
/// </summary>
|
|
[SetUpFixture]
|
|
public class NamespaceSetUp
|
|
{
|
|
[OneTimeSetUp]
|
|
public void OneTimeSetUp()
|
|
{
|
|
BasicConfigurator.Configure();
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace NFC_Real_Test
|
|
{
|
|
/// <summary>
|
|
/// Add log4net Output to Console Out
|
|
/// </summary>
|
|
[SetUpFixture]
|
|
public class NamespaceSetUp
|
|
{
|
|
[OneTimeSetUp]
|
|
public void OneTimeSetUp()
|
|
{
|
|
BasicConfigurator.Configure();
|
|
}
|
|
}
|
|
}
|