borepin/NFC_Test/NamespaceSetUp.cs

35 lines
639 B
C#
Raw Normal View History

using log4net.Config;
2020-10-07 19:25:51 +02:00
using NUnit.Framework;
2020-11-07 01:14:51 +01:00
namespace NFC_Unit_Test
2020-10-07 19:25:51 +02:00
{
2020-11-07 01:14:51 +01:00
/// <summary>
/// Add log4net Output to Console Out
/// </summary>
2020-10-07 19:25:51 +02:00
[SetUpFixture]
public class NamespaceSetUp
{
2020-10-07 19:25:51 +02:00
[OneTimeSetUp]
public void OneTimeSetUp()
{
BasicConfigurator.Configure();
}
}
}
2020-11-07 01:14:51 +01:00
namespace NFC_Real_Test
{
/// <summary>
/// Add log4net Output to Console Out
/// </summary>
[SetUpFixture]
public class NamespaceSetUp
{
[OneTimeSetUp]
public void OneTimeSetUp()
{
BasicConfigurator.Configure();
}
}
}