mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-14 07:41:53 +01:00
16 lines
263 B
C#
16 lines
263 B
C#
using log4net.Config;
|
|
using NUnit.Framework;
|
|
|
|
namespace NFC_Test
|
|
{
|
|
[SetUpFixture]
|
|
public class NamespaceSetUp
|
|
{
|
|
[OneTimeSetUp]
|
|
public void OneTimeSetUp()
|
|
{
|
|
BasicConfigurator.Configure();
|
|
}
|
|
}
|
|
}
|