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(); } } }